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

19 lines
509 B
JavaScript

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