Java org.springframework.data.redis.core SetOperations fields, constructors, methods, implement or subclass

Example usage for Java org.springframework.data.redis.core SetOperations fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.springframework.data.redis.core SetOperations.

The text is from its open source code.

Implementation

org.springframework.data.redis.core.SetOperations has the following implementations.
Click this link to see all its implementation.

Method

Longadd(K key, V... values)
Add given values to set at key .
BooleanisMember(K key, Object o)
Check if set at key contains value .
Setmembers(K key)
Get all elements of set at key .
Booleanmove(K key, V value, K destKey)
Move value from key to destKey
Vpop(K key)
Remove and return a random member from set at key .
Longremove(K key, Object... values)
Remove given values from set at key and return the number of removed elements.
Longsize(K key)
Get size of set at key .
Setunion(K key, K otherKey)
Union all sets at given keys and otherKey .
Setunion(K key, Collection otherKeys)
Union all sets at given keys and otherKeys .