Store a list of hash values.
Store a list of hash values at once.
redisHMSet(key, values)
key |
The (required) character identifier for the key name. |
values |
An R list of values to be stored. The list names are used as field names and must be nonempty. |
Redis hash values store values in one or more fields associated with a single key name. The redisHMSet function stores several fields associated with one key at once. Values already occupying any specified field slots are replaced.
TRUE is returned on success.
B. W. Lewis
http://redis.io/commands
## Not run: redisHMSet('A', list(x=1,y=2,z=3)) redisHGet('A','y') ## End(Not run)
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.