| 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.
|
| io.lettuce.core.search.arguments |
| Modifier and Type | Method and Description |
|---|---|
Mono<Long> |
AbstractRedisReactiveCommands.ftSugadd(K key,
V string,
double score,
SugAddArgs<K,V> args) |
RedisFuture<Long> |
AbstractRedisAsyncCommands.ftSugadd(K key,
V string,
double score,
SugAddArgs<K,V> args) |
| Modifier and Type | Method and Description |
|---|---|
RedisFuture<Long> |
RediSearchAsyncCommands.ftSugadd(K key,
V suggestion,
double score,
SugAddArgs<K,V> args)
Add a suggestion string to an auto-complete suggestion dictionary with additional options.
|
| Modifier and Type | Method and Description |
|---|---|
Mono<Long> |
RediSearchReactiveCommands.ftSugadd(K key,
V suggestion,
double score,
SugAddArgs<K,V> args)
Add a suggestion string to an auto-complete suggestion dictionary with additional options.
|
| Modifier and Type | Method and Description |
|---|---|
Long |
RediSearchCommands.ftSugadd(K key,
V suggestion,
double score,
SugAddArgs<K,V> args)
Add a suggestion string to an auto-complete suggestion dictionary with additional options.
|
| Modifier and Type | Method and Description |
|---|---|
AsyncExecutions<Long> |
NodeSelectionSearchAsyncCommands.ftSugadd(K key,
V suggestion,
double score,
SugAddArgs<K,V> args)
Add a suggestion string to an auto-complete suggestion dictionary with additional options.
|
| Modifier and Type | Method and Description |
|---|---|
Executions<Long> |
NodeSelectionSearchCommands.ftSugadd(K key,
V suggestion,
double score,
SugAddArgs<K,V> args)
Add a suggestion string to an auto-complete suggestion dictionary with additional options.
|
| Modifier and Type | Method and Description |
|---|---|
SugAddArgs<K,V> |
SugAddArgs.incr()
Increment the existing entry of the suggestion by the given score, instead of replacing the score.
|
static <K,V> SugAddArgs<K,V> |
SugAddArgs.Builder.incr()
Creates new
SugAddArgs setting INCR. |
SugAddArgs<K,V> |
SugAddArgs.payload(V payload)
Save an extra payload with the suggestion, that can be fetched by adding the WITHPAYLOADS argument to FT.SUGGET.
|
static <K,V> SugAddArgs<K,V> |
SugAddArgs.Builder.payload(V payload)
Creates new
SugAddArgs setting PAYLOAD. |
Copyright © 2025 lettuce.io. All rights reserved.