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

21 lines
781 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const generic_transformers_1 = require("@redis/client/dist/lib/commands/generic-transformers");
exports.default = {
IS_READ_ONLY: true,
/**
* Estimates the cumulative distribution function for values in a t-digest sketch
* @param parser - The command parser
* @param key - The name of the t-digest sketch
* @param values - Array of values to get CDF estimates for
*/
parseCommand(parser, key, values) {
parser.push('TDIGEST.CDF');
parser.pushKey(key);
for (const item of values) {
parser.push(item.toString());
}
},
transformReply: generic_transformers_1.transformDoubleArrayReply
};
//# sourceMappingURL=CDF.js.map