@@ -137,16 +137,16 @@ follows:
137
137
The raw command sending function varies from library to library; some are given
138
138
below:
139
139
140
- | Library | Function |
141
- | ------------------------------------------------------------------ | ------------------------------------------------------------------------------------- |
142
- | [ ` node-redis ` ] ( https://github.com/redis/node-redis ) | ` async (...args: string[]) => client.sendCommand(args) ` |
143
- | [ ` node-redis ` ] ( https://github.com/redis/node-redis ) (cluster) | ` async (...args) => cluster.sendCommand(undefined , false, args) ` |
144
- | [ ` ioredis ` ] ( https://github.com/luin/ioredis ) | ` async (command: string, ...args: string[]) => client.call(command, ...args) ` |
145
- | [ ` handy-redis ` ] ( https://github.com/mmkal/handy-redis ) | ` async (...args: string[]) => client.nodeRedis.sendCommand(args) ` |
146
- | [ ` tedis ` ] ( https://github.com/silkjs/tedis ) | ` async (...args: string[]) => client.command(...args) ` |
147
- | [ ` redis-fast-driver ` ] ( https://github.com/h0x91b/redis-fast-driver ) | ` async (...args: string[]) => client.rawCallAsync(args) ` |
148
- | [ ` yoredis ` ] ( https://github.com/djanowski/yoredis ) | ` async (...args: string[]) => (await client.callMany([args]))[0] ` |
149
- | [ ` noderis ` ] ( https://github.com/wallneradam/noderis ) | ` async (...args: string[]) => client.callRedis(...args) ` |
140
+ | Library | Function |
141
+ | ------------------------------------------------------------------ | ----------------------------------------------------------------------------------- |
142
+ | [ ` node-redis ` ] ( https://github.com/redis/node-redis ) | ` async (...args: string[]) => client.sendCommand(args) ` |
143
+ | [ ` node-redis ` ] ( https://github.com/redis/node-redis ) (cluster) | ` async (...args) => cluster.sendCommand(args[1] , false, args) ` |
144
+ | [ ` ioredis ` ] ( https://github.com/luin/ioredis ) | ` async (command: string, ...args: string[]) => client.call(command, ...args) ` |
145
+ | [ ` handy-redis ` ] ( https://github.com/mmkal/handy-redis ) | ` async (...args: string[]) => client.nodeRedis.sendCommand(args) ` |
146
+ | [ ` tedis ` ] ( https://github.com/silkjs/tedis ) | ` async (...args: string[]) => client.command(...args) ` |
147
+ | [ ` redis-fast-driver ` ] ( https://github.com/h0x91b/redis-fast-driver ) | ` async (...args: string[]) => client.rawCallAsync(args) ` |
148
+ | [ ` yoredis ` ] ( https://github.com/djanowski/yoredis ) | ` async (...args: string[]) => (await client.callMany([args]))[0] ` |
149
+ | [ ` noderis ` ] ( https://github.com/wallneradam/noderis ) | ` async (...args: string[]) => client.callRedis(...args) ` |
150
150
151
151
#### ` prefix `
152
152
0 commit comments