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

28 lines
865 B
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.default = {
NOT_KEYED_COMMAND: true,
IS_READ_ONLY: true,
/**
* Returns information about all cluster links (lower level connections to other nodes)
* @param parser - The Redis command parser
*/
parseCommand(parser) {
parser.push('CLUSTER', 'LINKS');
},
transformReply: {
2: (reply) => reply.map(link => {
const unwrapped = link;
return {
direction: unwrapped[1],
node: unwrapped[3],
'create-time': unwrapped[5],
events: unwrapped[7],
'send-buffer-allocated': unwrapped[9],
'send-buffer-used': unwrapped[11]
};
}),
3: undefined
}
};
//# sourceMappingURL=CLUSTER_LINKS.js.map