GetRecordsResponse<T> |
RecordRetriever.getByKey(List<Object> keyValues,
String expression) |
Retrieves records with the given key values and filter expression from
the database using a direct-to-rank fast key lookup, if possible, and
falling back to a standard lookup via the head node, if not.
|
GetRecordsResponse<T> |
RecordRetriever.getByKey(List<Object> keyValues,
String expression,
long offset) |
Retrieves records with the given key values and filter expression from
the database using a direct-to-rank fast key lookup, if possible, and
falling back to a standard lookup via the head node, if not.
|
<TResponse> GetRecordsResponse<TResponse> |
GPUdb.getRecords(GetRecordsRequest request) |
Retrieves records from a given table, optionally filtered by an
expression and/or sorted by a column.
|
<TResponse> GetRecordsResponse<TResponse> |
GPUdb.getRecords(Object typeDescriptor,
GetRecordsRequest request) |
Retrieves records from a given table, optionally filtered by an
expression and/or sorted by a column.
|
<TResponse> GetRecordsResponse<TResponse> |
GPUdb.getRecords(Object typeDescriptor,
String tableName,
long offset,
long limit,
Map<String,String> options) |
Retrieves records from a given table, optionally filtered by an
expression and/or sorted by a column.
|
<TResponse> GetRecordsResponse<TResponse> |
GPUdb.getRecords(String tableName,
long offset,
long limit,
Map<String,String> options) |
Retrieves records from a given table, optionally filtered by an
expression and/or sorted by a column.
|