Skip to content

Latest commit

 

History

History
18 lines (11 loc) · 307 Bytes

hkeys.md

File metadata and controls

18 lines (11 loc) · 307 Bytes

@complexity

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

Returns all field names in the hash stored at key.

@return

@multi-bulk-reply: list of fields in the hash, or an empty list when key does not exist.

@examples

@cli
HSET myhash field1 "Hello"
HSET myhash field2 "World"
HKEYS myhash