diff --git a/docs/clustering.md b/docs/clustering.md index 7b8b66a9ad..b5594e49a7 100644 --- a/docs/clustering.md +++ b/docs/clustering.md @@ -105,6 +105,8 @@ createCluster({ ## Command Routing +TODO request response policy + ### 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`. diff --git a/docs/v5.md b/docs/v5.md index bfac25315b..a38d7800d7 100644 --- a/docs/v5.md +++ b/docs/v5.md @@ -1,5 +1,7 @@ # RESP3 Support +[RESP3](./RESP3.md) + ```javascript const client = createClient({ RESP: 3 diff --git a/examples/package.json b/examples/package.json index 65ba1442f7..91120774d9 100644 --- a/examples/package.json +++ b/examples/package.json @@ -6,7 +6,7 @@ "private": true, "type": "module", "dependencies": { - "redis": "../" + "redis": "../packages/client" } }