From aca41f3567b578235de2d2a5caa213fd6a5a991d Mon Sep 17 00:00:00 2001 From: Twice Date: Thu, 25 Dec 2025 14:26:26 +0800 Subject: [PATCH] Add SMISMEMBER command to supported commands list It's supported but missing. --- docs/supported-commands.md | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/supported-commands.md b/docs/supported-commands.md index 8a150867..8e0484f6 100644 --- a/docs/supported-commands.md +++ b/docs/supported-commands.md @@ -91,6 +91,7 @@ | SINTERCARD | ✓ | v2.5.0 | Returns the cardinality (number of elements) in the intersection of sets. | | SINTERSTORE | ✓ | v1.0.0 | Computes the intersection of multiple sets and stores the result in a destination set. | | SISMEMBER | ✓ | v1.0.0 | Checks if a member is part of a set. | +| SMISMEMBER | ✓ | v1.0.0 | Checks if members are part of a set. | | SMEMBERS | ✓ | v1.0.0 | Returns all the members in a set. | | SMOVE | ✓ | v1.0.0 | Moves a member from one set to another. | | SPOP | ✓ | v1.0.0 | Pop members in the order of keys |