From 11c1738e7e495b2fe77dc9a9317ce509481812d9 Mon Sep 17 00:00:00 2001 From: Leibale Date: Wed, 26 Apr 2023 17:48:42 -0400 Subject: [PATCH] wip --- docs/clustering.md | 2 ++ docs/v5.md | 2 ++ examples/package.json | 2 +- 3 files changed, 5 insertions(+), 1 deletion(-) 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" } }