Skip to content
This repository has been archived by the owner on Sep 28, 2022. It is now read-only.

Latest commit

 

History

History
46 lines (30 loc) · 882 Bytes

File metadata and controls

46 lines (30 loc) · 882 Bytes
code type title description
true
page
hkeys
MemoryStorage:hkeys

hkeys

Returns all field names contained in a hash.

[Redis documentation]


hkeys(key, [options], callback)

Arguments Type Description
key string Key identifier
options JSON Object Optional parameters
callback function Callback

Options

Option Type Description Default
queuable boolean Make this request queuable or not true

Callback Response

Returns an array of field names.

Usage

<<< ./snippets/hkeys-1.java

Callback response:

["field1", "field2", "..."]