Package com.redislabs.lettusearch
Interface AggregateCommands<K,V>
-
- Type Parameters:
K- Key type.V- Value type.
- All Known Subinterfaces:
RediSearchCommands<K,V>
public interface AggregateCommands<K,V>Synchronously executed commands for RediSearch search index.- Since:
- 1.0
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description AggregateResults<K>aggregate(K index, V query)AggregateResults<K>aggregate(K index, V query, AggregateOptions options)AggregateWithCursorResults<K>aggregate(K index, V query, Cursor cursor)AggregateWithCursorResults<K>aggregate(K index, V query, Cursor cursor, AggregateOptions options)java.lang.StringcursorDelete(K index, long cursor)AggregateWithCursorResults<K>cursorRead(K index, long cursor)AggregateWithCursorResults<K>cursorRead(K index, long cursor, long count)
-
-
-
Method Detail
-
aggregate
AggregateResults<K> aggregate(K index, V query)
-
aggregate
AggregateResults<K> aggregate(K index, V query, AggregateOptions options)
-
aggregate
AggregateWithCursorResults<K> aggregate(K index, V query, Cursor cursor)
-
aggregate
AggregateWithCursorResults<K> aggregate(K index, V query, Cursor cursor, AggregateOptions options)
-
cursorRead
AggregateWithCursorResults<K> cursorRead(K index, long cursor)
-
cursorRead
AggregateWithCursorResults<K> cursorRead(K index, long cursor, long count)
-
cursorDelete
java.lang.String cursorDelete(K index, long cursor)
-
-