-first commit
This commit is contained in:
26
node_modules/@redis/bloom/dist/lib/commands/t-digest/BYRANK.js
generated
vendored
Normal file
26
node_modules/@redis/bloom/dist/lib/commands/t-digest/BYRANK.js
generated
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
"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
|
||||
Reference in New Issue
Block a user