Package com.redislabs.lettusearch
Interface SearchAsyncCommands<K,V>
-
- Type Parameters:
K- Key type.V- Value type.
- All Known Subinterfaces:
RediSearchAsyncCommands<K,V>
- All Known Implementing Classes:
RediSearchAsyncCommandsImpl
public interface SearchAsyncCommands<K,V>Asynchronously executed commands for RediSearch search index.- Since:
- 1.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description io.lettuce.core.RedisFuture<SearchResults<K,V>>search(K index, V query)io.lettuce.core.RedisFuture<SearchResults<K,V>>search(K index, V query, SearchOptions<K> options)
-
-
-
Method Detail
-
search
io.lettuce.core.RedisFuture<SearchResults<K,V>> search(K index, V query)
-
search
io.lettuce.core.RedisFuture<SearchResults<K,V>> search(K index, V query, SearchOptions<K> options)
-
-