redis and hash | Mar 2, 2016
Sets field
in the hash stored at key
to value
.
If key
does not exist, a new key holding a hash is created.
If field
already exists in the hash, it is overwritten.
redis and hash | Mar 2, 2016
See SCAN
for HSCAN
documentation.
redis and hash | Mar 2, 2016
Sets the specified fields to their respective values in the hash stored at
key
.
This command overwrites any existing fields in the hash.
If key
does not exist, a new key holding a hash is created.
redis and hash | Mar 2, 2016
Returns the values associated with the specified fields
in the hash stored at
key
.
redis and hash | Mar 2, 2016
Returns the number of fields contained in the hash stored at key
.
redis and hash | Mar 2, 2016
Returns all field names in the hash stored at key
.