Package com.redislabs.lettusearch
Interface AggregateAsyncCommands<K,V>
-
- Type Parameters:
K- Key type.V- Value type.
- All Known Subinterfaces:
RediSearchAsyncCommands<K,V>
- All Known Implementing Classes:
RediSearchAsyncCommandsImpl
public interface AggregateAsyncCommands<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<AggregateResults<K>>aggregate(K index, V query)io.lettuce.core.RedisFuture<AggregateResults<K>>aggregate(K index, V query, AggregateOptions options)io.lettuce.core.RedisFuture<AggregateWithCursorResults<K>>aggregate(K index, V query, Cursor cursor)io.lettuce.core.RedisFuture<AggregateWithCursorResults<K>>aggregate(K index, V query, Cursor cursor, AggregateOptions options)io.lettuce.core.RedisFuture<java.lang.String>cursorDelete(K index, long cursor)io.lettuce.core.RedisFuture<AggregateWithCursorResults<K>>cursorRead(K index, long cursor)io.lettuce.core.RedisFuture<AggregateWithCursorResults<K>>cursorRead(K index, long cursor, long count)
-
-
-
Method Detail
-
aggregate
io.lettuce.core.RedisFuture<AggregateResults<K>> aggregate(K index, V query)
-
aggregate
io.lettuce.core.RedisFuture<AggregateResults<K>> aggregate(K index, V query, AggregateOptions options)
-
aggregate
io.lettuce.core.RedisFuture<AggregateWithCursorResults<K>> aggregate(K index, V query, Cursor cursor)
-
aggregate
io.lettuce.core.RedisFuture<AggregateWithCursorResults<K>> aggregate(K index, V query, Cursor cursor, AggregateOptions options)
-
cursorRead
io.lettuce.core.RedisFuture<AggregateWithCursorResults<K>> cursorRead(K index, long cursor)
-
cursorRead
io.lettuce.core.RedisFuture<AggregateWithCursorResults<K>> cursorRead(K index, long cursor, long count)
-
cursorDelete
io.lettuce.core.RedisFuture<java.lang.String> cursorDelete(K index, long cursor)
-
-