17 lines
465 B
JavaScript
17 lines
465 B
JavaScript
"use strict";
|
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
exports.default = {
|
|
NOT_KEYED_COMMAND: true,
|
|
IS_READ_ONLY: true,
|
|
/**
|
|
* Constructs the LATENCY DOCTOR command
|
|
*
|
|
* @param parser - The command parser
|
|
* @see https://redis.io/commands/latency-doctor/
|
|
*/
|
|
parseCommand(parser) {
|
|
parser.push('LATENCY', 'DOCTOR');
|
|
},
|
|
transformReply: undefined
|
|
};
|
|
//# sourceMappingURL=LATENCY_DOCTOR.js.map
|