You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-03 04:01:40 +03:00
* Support CLUSTER commands * add some client tests * remove only * delete cluster slaves * delete reset clietn test * SET SLOT * test with client * fix fail * Update CLUSTER_COUNTKEYSINSLOT.spec.ts * move commands to client/commands.ts * clusterNode * remove CLUSTER-SET-CONFIG-EPOCH test with client * clean code Co-authored-by: leibale <leibale1998@gmail.com>
47 lines
1.0 KiB
TypeScript
47 lines
1.0 KiB
TypeScript
import { RedisCommandArguments } from '.';
|
|
|
|
export function transformArguments(): RedisCommandArguments {
|
|
return ['CLUSTER', 'SLOTS'];
|
|
}
|
|
|
|
type ClusterSlotsRawNode = [ip: string, port: number, id: string];
|
|
|
|
type ClusterSlotsRawReply = Array<[
|
|
from: number,
|
|
to: number,
|
|
master: ClusterSlotsRawNode,
|
|
...replicas: Array<ClusterSlotsRawNode>
|
|
]>;
|
|
|
|
type ClusterSlotsNode = {
|
|
ip: string;
|
|
port: number;
|
|
id: string;
|
|
};
|
|
|
|
export type ClusterSlotsReply = Array<{
|
|
from: number;
|
|
to: number;
|
|
master: ClusterSlotsNode;
|
|
replicas: Array<ClusterSlotsNode>;
|
|
}>;
|
|
|
|
export function transformReply(reply: ClusterSlotsRawReply): ClusterSlotsReply {
|
|
return reply.map(([from, to, master, ...replicas]) => {
|
|
return {
|
|
from,
|
|
to,
|
|
master: transformNode(master),
|
|
replicas: replicas.map(transformNode)
|
|
};
|
|
});
|
|
}
|
|
|
|
function transformNode([ip, port, id]: ClusterSlotsRawNode): ClusterSlotsNode {
|
|
return {
|
|
ip,
|
|
port,
|
|
id
|
|
};
|
|
}
|