Skip to main content

HVALS

Syntax

HVALS key

Time complexity: O(N) where N is the size of the hash.

ACL categories: @read, @hash, @fast

Returns all values in the hash stored at key.

Return

Array reply: list of values in the hash, or an empty list when key does not exist.

Examples

dragonfly> HSET myhash field1 "Hello"
(integer) 1
dragonfly> HSET myhash field2 "World"
(integer) 1
dragonfly> HVALS myhash
1) "Hello"
2) "World"