Description
Examples
Description | S.NO | Command | Description |
|---|---|---|
| 1 | Hexists key field | Determine wheather a hash field exists or not |
| 2 | HDEL key field2 | Delete one or more hash fields |
| 3 | HGET key field | Get the values of a hash fields stored at specified key |
| 4 | HINCRBY key field increment | Increment the integer values of ahash field by the given number |
| 5 | HKEYS key | Get all the field in a hash |
| 6 | HLEN key | Get the number of fields in a hash |
| 7 | HMGET key field1 | Get the values of all the given hash fields |
| 8 | HMSET key field1 value1 | Set multiple hash fields to multiple values |
| 9 | HVALS key | Get all the values in a hash |
| 10 | HSCAN key cursor [MATCH pattern] [COUNT count] | Incrementally iterate hash fields and associated values |
| 11 | HSCAN key cursor [MATCH pattern] [COUNT count] | Incrementally iterate hash fields and associated values |
Key Points