Files
micro-service-api/node_modules/@redis/bloom/dist/lib/commands/t-digest/BYRANK.js
2025-11-11 12:36:06 +07:00

26 lines
970 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.transformByRankArguments = void 0;
const generic_transformers_1 = require("@redis/client/dist/lib/commands/generic-transformers");
function transformByRankArguments(parser, key, ranks) {
parser.pushKey(key);
for (const rank of ranks) {
parser.push(rank.toString());
}
}
exports.transformByRankArguments = transformByRankArguments;
exports.default = {
IS_READ_ONLY: true,
/**
* Returns value estimates for one or more ranks in a t-digest sketch
* @param parser - The command parser
* @param key - The name of the t-digest sketch
* @param ranks - Array of ranks to get value estimates for (ascending order)
*/
parseCommand(...args) {
args[0].push('TDIGEST.BYRANK');
transformByRankArguments(...args);
},
transformReply: generic_transformers_1.transformDoubleArrayReply
};
//# sourceMappingURL=BYRANK.js.map