Skip to content

Latest commit

 

History

History
41 lines (27 loc) · 1.01 KB

index.md

File metadata and controls

41 lines (27 loc) · 1.01 KB
code type title
true
page
hget

hget

Returns the field's value of a hash.

[Redis documentation]

Arguments

hget(key, field, [options]);

Arguments Type Description
key
string
Hash key
field
string
Field name
options
object
Optional query arguments

options

The options arguments can contain the following option properties:

Property Type (default) Description
queuable
boolean (true)
If true, queues the request during downtime, until connected to Kuzzle again

Resolve

Returns the field's value.

Usage

<<< ./snippets/hget.js