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) · 887 Bytes

File metadata and controls

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

hlen

Returns the number of fields contained in a hash.

[Redis documentation]


hlen(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 integer containing the number of fields in the hash.

Usage

<<< ./snippets/hlen-1.java

Callback response:

13