Files
micro-service-api/node_modules/@redis/client/dist/lib/commands/UNLINK.js
2025-11-11 12:36:06 +07:00

19 lines
583 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = {
IS_READ_ONLY: false,
/**
* Constructs the UNLINK command to asynchronously delete one or more keys
*
* @param parser - The command parser
* @param keys - One or more keys to unlink
* @returns The number of keys that were unlinked
* @see https://redis.io/commands/unlink/
*/
parseCommand(parser, keys) {
parser.push('UNLINK');
parser.pushKeys(keys);
},
transformReply: undefined
};
//# sourceMappingURL=UNLINK.js.map