Package com.redislabs.lettusearch
Interface SuggestAsyncCommands<K,V>
-
- Type Parameters:
K- Key type.V- Value type.
- All Known Subinterfaces:
RediSearchAsyncCommands<K,V>
- All Known Implementing Classes:
RediSearchAsyncCommandsImpl
public interface SuggestAsyncCommands<K,V>Asynchronously executed commands for RediSearch suggestion index.- Since:
- 1.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description io.lettuce.core.RedisFuture<java.lang.Long>sugadd(K key, Suggestion<V> suggestion)io.lettuce.core.RedisFuture<java.lang.Long>sugadd(K key, Suggestion<V> suggestion, boolean increment)io.lettuce.core.RedisFuture<java.lang.Boolean>sugdel(K key, V string)io.lettuce.core.RedisFuture<java.util.List<Suggestion<V>>>sugget(K key, V prefix)io.lettuce.core.RedisFuture<java.util.List<Suggestion<V>>>sugget(K key, V prefix, SuggetOptions options)io.lettuce.core.RedisFuture<java.lang.Long>suglen(K key)
-
-
-
Method Detail
-
sugadd
io.lettuce.core.RedisFuture<java.lang.Long> sugadd(K key, Suggestion<V> suggestion)
-
sugadd
io.lettuce.core.RedisFuture<java.lang.Long> sugadd(K key, Suggestion<V> suggestion, boolean increment)
-
sugget
io.lettuce.core.RedisFuture<java.util.List<Suggestion<V>>> sugget(K key, V prefix)
-
sugget
io.lettuce.core.RedisFuture<java.util.List<Suggestion<V>>> sugget(K key, V prefix, SuggetOptions options)
-
suglen
io.lettuce.core.RedisFuture<java.lang.Long> suglen(K key)
-
-