Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

GEODE-9087: redis docs for HSCAN command #6235

Merged
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
7 changes: 4 additions & 3 deletions geode-apis-compatible-with-redis/README.md
Expand Up @@ -174,15 +174,15 @@ start server \
| HLEN | HINCRBY | BITFIELD |
| HVALS | HINCRBYFLOAT | BLPOP |
| INFO | HKEYS | BRPOP |
| KEYS | HSCAN | BRPOPLPUSH |
| KEYS | HSCAN[3] | BRPOPLPUSH |
| PERSIST | INCR | BZPOPMAX |
| PEXPIRE | INCRBY | BZPOPMIN |
| PEXPIREAT | INCRBYFLOAT | CLIENT CACHING |
| PING | MGET | CLIENT GETNAME |
| PSUBSCRIBE | MSET | CLIENT ID |
| PTTL | MSETNX | CLIENT KILL |
| PUNSUBSCRIBE | PSETEX | CLIENT LIST |
| QUIT | SCAN | CLIENT PAUSE |
| QUIT | SCAN | CLIENT PAUSE |
| RENAME | SCARD | CLIENT REPLY |
| SADD | SDIFF | CLIENT SETNAME |
| SET | SDIFFSTORE | CLIENT TRACKING |
Expand Down Expand Up @@ -329,9 +329,10 @@ start server \
| | | ZREVRANK |
| | | ZSCAN |
| | | ZSCORE |
| | | ZUNIONSTORE | |
| | | ZUNIONSTORE |

**NOTES:**

[1] - UNLINK is implemented as a synonym to DEL and does not unlink asynchronously.
[2] - SLOWLOG is implemented as a NoOp.
[3] - Redis accepts 64-bit signed integer for the cursor and COUNT parameters be represented as an integer for the HSCAN command. This operation is limited to 32-bit integer values.
sabbey37 marked this conversation as resolved.
Show resolved Hide resolved
Expand Up @@ -68,6 +68,7 @@ The <%=vars.product_name%> APIs compatible with Redis currently supports the fol

**Note**: These commands are supported for Redis 5.
**Note**: SLOWLOG is implemented as a NoOp for compatibility with some monitoring tools.
**Note**: Redis accepts Longs as the parameters for the HSCAN command. The Geode APIs compatible with Redis only accept Integer values. Parameters out of the range of the 32-bit integer type will throw an exception.
sabbey37 marked this conversation as resolved.
Show resolved Hide resolved

- **Connection**: AUTH, PING, QUIT
- **Hashes**: HDEL, HEXISTS, HGET, HGETALL, HINCRBY, HINCRBYFLOAT, HKEYS, HLEN, HMGET, HMSET, HSCAN, HSET, HSETNX, HSTRLEN, HVALS
Expand Down