This is an automated email from the ASF dual-hosted git repository. twice pushed a commit to branch PragmaTwice-patch-2 in repository https://gitbox.apache.org/repos/asf/kvrocks-website.git
commit a8d7d15d2aa2b6bd1b6420c7debb80235884eb25 Author: Twice <[email protected]> AuthorDate: Sun Feb 23 20:37:02 2025 +0800 Add comments for some commands in supported-commands.md --- docs/supported-commands.md | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/docs/supported-commands.md b/docs/supported-commands.md index 37d7b045..c6dfd651 100644 --- a/docs/supported-commands.md +++ b/docs/supported-commands.md @@ -45,11 +45,15 @@ | HMSET | ✓ | v1.0.0 | Sets multiple fields in a hash to multiple values. | | HRANGEBYLEX | ✓ | v2.3.0 | Returns elements in a sorted set within a specific range defined by lexicographical ordering. | | HSET | ✓ | v1.0.0 | Sets the value of a field in a hash. | -| HSETNX | ✓ | v1.0.0 | | -| HSTRLEN | ✓ | v1.0.0 | | -| HVALS | ✓ | v1.0.0 | | -| HSCAN | ✓ | v1.0.0 | | -| HRANDFIELD | ✓ | v2.6.0 | | +| HSETNX | ✓ | v1.0.0 | Sets the value of a field in a hash only if the field does not exist. + | +| HSTRLEN | ✓ | v1.0.0 | Returns the length of string value for the specific field in a hash. + | +| HVALS | ✓ | v1.0.0 | Returns all values stored in a hash. + | +| HSCAN | ✓ | v1.0.0 | SCAN for fields of a hash. + | +| HRANDFIELD | ✓ | v2.6.0 | Returns some random fields in a hash. | | HSETEXPIRE | ✓ | unstable | The combination of these two commands: HSET and EXPIRE | ## List commands @@ -263,7 +267,7 @@ These commands are subcommands for `CLUSTERX`, using as `CLUSTERX VERSION` etc. | SETNODEID | ✓ | v2.0.2 | Sets or updates the node ID in the cluster configuration. | | SETNODES | ✓ | v2.0.2 | Configures the nodes in the cluster, often used for initializing or changing the cluster's topology. | | SETSLOT | ✓ | v2.0.6 | Manages slot assignments, moving slots between nodes. | -| MIGRATE | ✓ | v2.0.6 | | +| MIGRATE | ✓ | v2.0.6 | Migrate slots between cluster nodes. | :::note
