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

19 lines
493 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = {
CACHEABLE: true,
IS_READ_ONLY: true,
/**
* Constructs the MGET command
*
* @param parser - The command parser
* @param keys - Array of keys to get
* @see https://redis.io/commands/mget/
*/
parseCommand(parser, keys) {
parser.push('MGET');
parser.pushKeys(keys);
},
transformReply: undefined
};
//# sourceMappingURL=MGET.js.map