redisHGetAll: Redis hash fields and values.

Description Usage Arguments Details Value Author(s) References See Also Examples

View source: R/hashCMD.R

Description

Return all fields and values associated with the given key.

Usage

1

Arguments

key

The key to look up.

...

Optional additional arguments. Specify raw=TRUE to skip de-serialization of the data.

Details

Returns all the fields and their values in the Redis hash associated with key. If the key is not found, or if the hash is empty, NULL is returned. If the key is associated with a value of type other than 'hash,' an error is thrown.

Value

A list of values defined for the given key, named by the field names.

Author(s)

B. W. Lewis

References

http://redis.io/commands

See Also

redisHSet

Examples

1
2
3
4
5
## Not run: 
redisHMSet('A',list(x=1,y=2,z=3))
redisHGetAll('A')

## End(Not run)

bwlewis/rredis documentation built on Jan. 3, 2022, 4:53 p.m.