HGETALL
Synopsis
HGETALL key
This command fetches the full content of all fields and all values of the hash that is associated with the given key
.
Return value
Returns list of fields and values.
Examples
You can do this as shown below.
$ HSET yugahash area1 "Africa"
1
$ HSET yugahash area2 "America"
1
$ HGETALL yugahash
1) area1
2) "Africa"
3) area2
4) "America"
See also
hdel
, hexists
, hget
, hkeys
, hlen
, hmget
, hmset
, hset
, hincrby
, hstrlen
, hvals