Skip to content

Latest commit

 

History

History
46 lines (30 loc) · 1.21 KB

index.md

File metadata and controls

46 lines (30 loc) · 1.21 KB
code type title
true
page
hset

hset

Sets a field and its value in a hash.

If the key does not exist, a new key holding a hash is created.

If the field already exists, its value is overwritten.

[Redis documentation]

Arguments

hset(key, field, value, [options]);

Arguments Type Description
key
string
Hash key
field
string
Field name
value
string
Field value
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

Resolves once the field has been set.

Usage

<<< ./snippets/hset.js