You've already forked node-redis
mirror of
https://github.com/redis/node-redis.git
synced 2025-08-07 13:22:56 +03:00
wip
This commit is contained in:
@@ -105,6 +105,8 @@ createCluster({
|
|||||||
|
|
||||||
## Command Routing
|
## Command Routing
|
||||||
|
|
||||||
|
TODO request response policy
|
||||||
|
|
||||||
### Commands that operate on Redis Keys
|
### Commands that operate on Redis Keys
|
||||||
|
|
||||||
Commands such as `GET`, `SET`, etc. are routed by the first key specified. For example `MGET 1 2 3` will be routed by the key `1`.
|
Commands such as `GET`, `SET`, etc. are routed by the first key specified. For example `MGET 1 2 3` will be routed by the key `1`.
|
||||||
|
@@ -1,5 +1,7 @@
|
|||||||
# RESP3 Support
|
# RESP3 Support
|
||||||
|
|
||||||
|
[RESP3](./RESP3.md)
|
||||||
|
|
||||||
```javascript
|
```javascript
|
||||||
const client = createClient({
|
const client = createClient({
|
||||||
RESP: 3
|
RESP: 3
|
||||||
|
@@ -6,7 +6,7 @@
|
|||||||
"private": true,
|
"private": true,
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"redis": "../"
|
"redis": "../packages/client"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user