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.28 KB

File metadata and controls

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

sdiff

Returns the difference between the set of unique values stored at key and the other provided sets.

[Redis documentation]


sdiff(key, keys, [options], [callback])

Arguments Type Description
key string Key identifier to compare
keys array list of set keys to compare with the set stored at key
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 an array of differences.

Usage

<<< ./snippets/sdiff-1.java

Callback response:

["diff value1", "diff value2", "..."]