From c1fc0feed011b69a4d19a493ba5ff9ef0d0f4f06 Mon Sep 17 00:00:00 2001 From: Leibale Date: Wed, 3 Jan 2024 11:46:09 -0500 Subject: [PATCH] #2670 #2668 - add note about command modifiers that changes the reply type --- packages/redis/README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/packages/redis/README.md b/packages/redis/README.md index 4d20fd1cd7..82386d725d 100644 --- a/packages/redis/README.md +++ b/packages/redis/README.md @@ -85,6 +85,8 @@ await client.set('key', 'value', { }); ``` +> NOTE: command modifiers that change the reply type (e.g. `WITHSCORES` for `ZDIFF`) are exposed as separate commands (e.g. `ZDIFF_WITHSCORES`/`zDiffWithScores`). + Replies will be mapped to useful data structures: ```javascript