| 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 |
Client for Redis Cluster, see
RedisClusterClient. |
| 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<SpellCheckResult<V>> |
AbstractRedisReactiveCommands.ftSpellcheck(String index,
V query,
SpellCheckArgs<K,V> args) |
RedisFuture<SpellCheckResult<V>> |
AbstractRedisAsyncCommands.ftSpellcheck(String index,
V query,
SpellCheckArgs<K,V> args) |
| Modifier and Type | Method and Description |
|---|---|
RedisFuture<SpellCheckResult<V>> |
RediSearchAsyncCommands.ftSpellcheck(String index,
V query,
SpellCheckArgs<K,V> args)
Perform spelling correction on a query with additional options.
|
| Modifier and Type | Method and Description |
|---|---|
Mono<SpellCheckResult<V>> |
RediSearchReactiveCommands.ftSpellcheck(String index,
V query,
SpellCheckArgs<K,V> args)
Perform spelling correction on a query with additional options.
|
| Modifier and Type | Method and Description |
|---|---|
SpellCheckResult<V> |
RediSearchCommands.ftSpellcheck(String index,
V query,
SpellCheckArgs<K,V> args)
Perform spelling correction on a query with additional options.
|
| Modifier and Type | Method and Description |
|---|---|
RedisFuture<SpellCheckResult<V>> |
RedisAdvancedClusterAsyncCommandsImpl.ftSpellcheck(String index,
V query,
SpellCheckArgs<K,V> args) |
Mono<SpellCheckResult<V>> |
RedisAdvancedClusterReactiveCommandsImpl.ftSpellcheck(String index,
V query,
SpellCheckArgs<K,V> args) |
| Modifier and Type | Method and Description |
|---|---|
AsyncExecutions<SpellCheckResult<V>> |
NodeSelectionSearchAsyncCommands.ftSpellcheck(String index,
V query,
SpellCheckArgs<K,V> args)
Perform spelling correction on a query with additional options.
|
| Modifier and Type | Method and Description |
|---|---|
Executions<SpellCheckResult<V>> |
NodeSelectionSearchCommands.ftSpellcheck(String index,
V query,
SpellCheckArgs<K,V> args)
Perform spelling correction on a query with additional options.
|
| Modifier and Type | Method and Description |
|---|---|
SpellCheckArgs<K,V> |
SpellCheckArgs.dialect(long dialect)
Set the dialect version under which to execute the query.
|
static <K,V> SpellCheckArgs<K,V> |
SpellCheckArgs.Builder.dialect(long dialect)
Creates new
SpellCheckArgs setting DIALECT. |
SpellCheckArgs<K,V> |
SpellCheckArgs.distance(long distance)
Set maximum Levenshtein distance for spelling suggestions (default: 1, max: 4).
|
static <K,V> SpellCheckArgs<K,V> |
SpellCheckArgs.Builder.distance(long distance)
Creates new
SpellCheckArgs setting DISTANCE. |
SpellCheckArgs<K,V> |
SpellCheckArgs.termsExclude(K dictionary,
V... terms)
Exclude terms from a custom dictionary from spelling suggestions.
|
static <K,V> SpellCheckArgs<K,V> |
SpellCheckArgs.Builder.termsExclude(K dictionary,
V... terms)
Creates new
SpellCheckArgs setting TERMS EXCLUDE. |
SpellCheckArgs<K,V> |
SpellCheckArgs.termsInclude(K dictionary,
V... terms)
Include terms from a custom dictionary as potential spelling suggestions.
|
static <K,V> SpellCheckArgs<K,V> |
SpellCheckArgs.Builder.termsInclude(K dictionary,
V... terms)
Creates new
SpellCheckArgs setting TERMS INCLUDE. |
Copyright © 2025 lettuce.io. All rights reserved.