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

Latest commit

 

History

History
53 lines (34 loc) · 1.2 KB

File metadata and controls

53 lines (34 loc) · 1.2 KB
code type title description
true
page
pfadd
MemoryStorage:pfadd

pfadd

Adds elements to an HyperLogLog data structure.

[Redis documentation]


pfadd(key, elements, [options], [callback])

Arguments Type Description
key string Key identifier
elements array Elements to add to the HyperLogLog structure
options JSON Object Optional parameters
callback function Callback

Options

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

Return Value

Returns the MemoryStorage object to allow chaining.


Callback Response

Returns a boolean specifying if the operation was successful or not.

Usage

<<< ./snippets/pfadd-1.java

Callback response:

true