Package org.apache.solr.common.params
Interface CursorMarkParams
-
public interface CursorMarkParamsParameters and constants used when dealing with cursor based requests across large sorted result sets.
-
-
Field Summary
Fields Modifier and Type Field Description static StringCURSOR_MARK_NEXTKey used in Solr response to inform the client what the "next"CURSOR_MARK_PARAMvalue should be to continue paginationstatic StringCURSOR_MARK_PARAMParam clients should specify indicating that they want a cursor based search.static StringCURSOR_MARK_STARTSpecial value forCURSOR_MARK_PARAMindicating that cursor functionality should be used, and a new cursor value should be computed afte the last result, but that currently the "first page" of results is being requested
-
-
-
Field Detail
-
CURSOR_MARK_PARAM
static final String CURSOR_MARK_PARAM
Param clients should specify indicating that they want a cursor based search. The value specified must either beCURSOR_MARK_STARTindicating the first page of results, or a value returned by a previous search via theCURSOR_MARK_NEXTkey.- See Also:
- Constant Field Values
-
CURSOR_MARK_NEXT
static final String CURSOR_MARK_NEXT
Key used in Solr response to inform the client what the "next"CURSOR_MARK_PARAMvalue should be to continue pagination- See Also:
- Constant Field Values
-
CURSOR_MARK_START
static final String CURSOR_MARK_START
Special value forCURSOR_MARK_PARAMindicating that cursor functionality should be used, and a new cursor value should be computed afte the last result, but that currently the "first page" of results is being requested- See Also:
- Constant Field Values
-
-