| Package | Description |
|---|---|
| io.lettuce.core |
The Redis client package containing
RedisClient for Redis Standalone and Redis Sentinel operations. |
| io.lettuce.core.api.async |
Standalone Redis API for asynchronous executed commands.
|
| io.lettuce.core.api.reactive |
Standalone Redis API for reactive command execution.
|
| io.lettuce.core.api.sync |
Standalone Redis API for synchronous executed commands.
|
| io.lettuce.core.cluster.api.async |
Redis Cluster API for asynchronous executed commands.
|
| io.lettuce.core.cluster.api.sync |
Redis Cluster API for synchronous executed commands.
|
| Modifier and Type | Method and Description |
|---|---|
SDiffCardArgs |
SDiffCardArgs.limit(long limit)
Set the maximum cardinality to return.
|
static SDiffCardArgs |
SDiffCardArgs.Builder.limit(long limit)
Creates new
SDiffCardArgs with LIMIT set. |
| Modifier and Type | Method and Description |
|---|---|
RedisFuture<Long> |
AbstractRedisAsyncCommands.sdiffcard(K key1,
K key2,
SDiffCardArgs sdiffCardArgs) |
reactor.core.publisher.Mono<Long> |
AbstractRedisReactiveCommands.sdiffcard(K key1,
K key2,
SDiffCardArgs sdiffCardArgs) |
RedisFuture<Long> |
AbstractRedisAsyncCommands.sdiffcard(List<K> keys,
SDiffCardArgs sdiffCardArgs) |
reactor.core.publisher.Mono<Long> |
AbstractRedisReactiveCommands.sdiffcard(List<K> keys,
SDiffCardArgs sdiffCardArgs) |
| Modifier and Type | Method and Description |
|---|---|
RedisFuture<Long> |
RedisSetAsyncCommands.sdiffcard(K key1,
K key2,
SDiffCardArgs sdiffCardArgs)
Compute the number of elements in the difference between the set stored at
key1 and the set stored at
key2, without returning the difference itself, applying SDiffCardArgs. |
RedisFuture<Long> |
RedisSetAsyncCommands.sdiffcard(List<K> keys,
SDiffCardArgs sdiffCardArgs)
Compute the number of elements in the difference between the set stored at the first key and the sets stored at all
successive keys, without returning the difference itself, applying
SDiffCardArgs. |
| Modifier and Type | Method and Description |
|---|---|
reactor.core.publisher.Mono<Long> |
RedisSetReactiveCommands.sdiffcard(K key1,
K key2,
SDiffCardArgs sdiffCardArgs)
Compute the number of elements in the difference between the set stored at
key1 and the set stored at
key2, without returning the difference itself, applying SDiffCardArgs. |
reactor.core.publisher.Mono<Long> |
RedisSetReactiveCommands.sdiffcard(List<K> keys,
SDiffCardArgs sdiffCardArgs)
Compute the number of elements in the difference between the set stored at the first key and the sets stored at all
successive keys, without returning the difference itself, applying
SDiffCardArgs. |
| Modifier and Type | Method and Description |
|---|---|
Long |
RedisSetCommands.sdiffcard(K key1,
K key2,
SDiffCardArgs sdiffCardArgs)
Compute the number of elements in the difference between the set stored at
key1 and the set stored at
key2, without returning the difference itself, applying SDiffCardArgs. |
Long |
RedisSetCommands.sdiffcard(List<K> keys,
SDiffCardArgs sdiffCardArgs)
Compute the number of elements in the difference between the set stored at the first key and the sets stored at all
successive keys, without returning the difference itself, applying
SDiffCardArgs. |
| Modifier and Type | Method and Description |
|---|---|
AsyncExecutions<Long> |
NodeSelectionSetAsyncCommands.sdiffcard(K key1,
K key2,
SDiffCardArgs sdiffCardArgs)
Compute the number of elements in the difference between the set stored at
key1 and the set stored at
key2, without returning the difference itself, applying SDiffCardArgs. |
AsyncExecutions<Long> |
NodeSelectionSetAsyncCommands.sdiffcard(List<K> keys,
SDiffCardArgs sdiffCardArgs)
Compute the number of elements in the difference between the set stored at the first key and the sets stored at all
successive keys, without returning the difference itself, applying
SDiffCardArgs. |
| Modifier and Type | Method and Description |
|---|---|
Executions<Long> |
NodeSelectionSetCommands.sdiffcard(K key1,
K key2,
SDiffCardArgs sdiffCardArgs)
Compute the number of elements in the difference between the set stored at
key1 and the set stored at
key2, without returning the difference itself, applying SDiffCardArgs. |
Executions<Long> |
NodeSelectionSetCommands.sdiffcard(List<K> keys,
SDiffCardArgs sdiffCardArgs)
Compute the number of elements in the difference between the set stored at the first key and the sets stored at all
successive keys, without returning the difference itself, applying
SDiffCardArgs. |
Copyright © 2026 lettuce.io. All rights reserved.