hvals.3valkey - Man Page

Returns all values in a hash.

Synopsis

HVALS key

Description

Returns all values in the hash stored at key.

Reply

Resp2

valkey-protocol(7) Array reply: a list of values in the hash, or an empty list when the key does not exist

Resp3

valkey-protocol(7) Array reply: a list of values in the hash, or an empty list when the key does not exist.

Complexity

O(N) where N is the size of the hash.

Acl Categories

@hash @read @slow

History

Examples

127.0.0.1:6379> HSET myhash field1 "Hello"
(integer) 1
127.0.0.1:6379> HSET myhash field2 "World"
(integer) 1
127.0.0.1:6379> HVALS myhash
1) "Hello"
2) "World"

See Also

hdel(3valkey), hexists(3valkey), hget(3valkey), hgetall(3valkey), hincrby(3valkey), hincrbyfloat(3valkey), hkeys(3valkey), hlen(3valkey), hmget(3valkey), hrandfield(3valkey), hscan(3valkey), hset(3valkey), hsetnx(3valkey), hstrlen(3valkey)

Info

2024-09-23 8.0.0 Valkey Command Manual