Modifier and Type | Class and Description |
---|---|
class |
SpatialIndexQuery
A query using spatial filtering
|
Modifier and Type | Method and Description |
---|---|
IndexQuery |
IndexQuery.clone() |
IndexQuery |
FacetQuery.getQuery()
Query that should be ran on index.
|
Modifier and Type | Method and Description |
---|---|
void |
FacetQuery.setQuery(IndexQuery query)
Query that should be ran on index.
|
Constructor and Description |
---|
SpatialIndexQuery(IndexQuery query)
Initializes a new instance of the
SpatialIndexQuery class. |
Modifier and Type | Method and Description |
---|---|
IndexQuery |
IDocumentQuery.getIndexQuery()
Create the index query object for this query
|
Modifier and Type | Method and Description |
---|---|
IDocumentQueryCustomization |
IDocumentQueryCustomization.beforeQueryExecution(Action1<IndexQuery> action)
Allow you to modify the index query before it is executed
|
TSelf |
IDocumentQueryBase.beforeQueryExecution(Action1<IndexQuery> beforeQueryExecution)
Allows you to modify the index query before it is sent to the server
|
Modifier and Type | Method and Description |
---|---|
IndexQuery |
IRavenQueryInspector.getIndexQuery()
Get the index query for this query
|
Modifier and Type | Method and Description |
---|---|
Operation |
IDatabaseCommands.deleteByIndex(String indexName,
IndexQuery queryToDelete)
Perform a set based deletes using the specified index
|
Operation |
ServerClient.deleteByIndex(String indexName,
IndexQuery queryToDelete) |
Operation |
IDatabaseCommands.deleteByIndex(String indexName,
IndexQuery queryToDelete,
BulkOperationOptions options)
Perform a set based deletes using the specified index
|
Operation |
ServerClient.deleteByIndex(String indexName,
IndexQuery queryToDelete,
BulkOperationOptions options) |
protected Operation |
ServerClient.directDeleteByIndex(OperationMetadata operationMetadata,
String indexName,
IndexQuery queryToDelete,
BulkOperationOptions options) |
protected FacetResults |
ServerClient.directGetFacets(OperationMetadata operationMetadata,
String index,
IndexQuery query,
String facetSetupDoc,
int start,
Integer pageSize) |
protected FacetResults |
ServerClient.directGetFacets(OperationMetadata operationMetadata,
String index,
IndexQuery query,
String facetsJson,
int start,
Integer pageSize,
HttpMethods method) |
protected QueryResult |
ServerClient.directQueryAsGet(String index,
IndexQuery query,
OperationMetadata operationMetadata,
String[] includes,
boolean metadataOnly,
boolean includeEntries) |
protected QueryResult |
ServerClient.directQueryAsPost(String index,
IndexQuery query,
OperationMetadata operationMetadata,
String[] includes,
boolean metadataOnly,
boolean indexEntriesOnly) |
RavenJObjectIterator |
ServerClient.directStreamQuery(OperationMetadata operationMetadata,
String index,
IndexQuery query,
Reference<QueryHeaderInformation> queryHeaderInfo) |
protected Operation |
ServerClient.directUpdateByIndexImpl(OperationMetadata operationMetadata,
String indexName,
IndexQuery queryToUpdate,
BulkOperationOptions options,
String requestData,
HttpMethods method) |
FacetResults |
IDatabaseCommands.getFacets(String index,
IndexQuery query,
List<Facet> facets)
Using the given Index, calculate the facets as per the specified doc with the given start and pageSize
|
FacetResults |
ServerClient.getFacets(String index,
IndexQuery query,
List<Facet> facets) |
FacetResults |
IDatabaseCommands.getFacets(String index,
IndexQuery query,
List<Facet> facets,
int start)
Using the given Index, calculate the facets as per the specified doc with the given start and pageSize
|
FacetResults |
ServerClient.getFacets(String index,
IndexQuery query,
List<Facet> facets,
int start) |
FacetResults |
IDatabaseCommands.getFacets(String index,
IndexQuery query,
List<Facet> facets,
int start,
Integer pageSize)
Using the given Index, calculate the facets as per the specified doc with the given start and pageSize
|
FacetResults |
ServerClient.getFacets(String index,
IndexQuery query,
List<Facet> facets,
int start,
Integer pageSize) |
FacetResults |
IDatabaseCommands.getFacets(String index,
IndexQuery query,
String facetSetupDoc)
Using the given Index, calculate the facets as per the specified doc with the given start and pageSize
|
FacetResults |
ServerClient.getFacets(String index,
IndexQuery query,
String facetSetupDoc) |
FacetResults |
IDatabaseCommands.getFacets(String index,
IndexQuery query,
String facetSetupDoc,
int start)
Using the given Index, calculate the facets as per the specified doc with the given start and pageSize
|
FacetResults |
ServerClient.getFacets(String index,
IndexQuery query,
String facetSetupDoc,
int start) |
FacetResults |
IDatabaseCommands.getFacets(String index,
IndexQuery query,
String facetSetupDoc,
int start,
Integer pageSize)
Using the given Index, calculate the facets as per the specified doc with the given start and pageSize
|
FacetResults |
ServerClient.getFacets(String index,
IndexQuery query,
String facetSetupDoc,
int start,
Integer pageSize) |
QueryResult |
IDatabaseCommands.query(String index,
IndexQuery query)
Queries the specified index in the Raven-flavored Lucene query syntax
|
QueryResult |
ServerClient.query(String index,
IndexQuery query) |
QueryResult |
IDatabaseCommands.query(String index,
IndexQuery query,
String[] includes)
Queries the specified index in the Raven-flavored Lucene query syntax
|
QueryResult |
ServerClient.query(String index,
IndexQuery query,
String[] includes) |
QueryResult |
IDatabaseCommands.query(String index,
IndexQuery query,
String[] includes,
boolean metadataOnly)
Queries the specified index in the Raven-flavored Lucene query syntax
|
QueryResult |
ServerClient.query(String index,
IndexQuery query,
String[] includes,
boolean metadataOnly) |
QueryResult |
IDatabaseCommands.query(String index,
IndexQuery query,
String[] includes,
boolean metadataOnly,
boolean indexEntriesOnly)
Queries the specified index in the Raven-flavored Lucene query syntax
|
QueryResult |
ServerClient.query(String index,
IndexQuery query,
String[] includes,
boolean metadataOnly,
boolean indexEntriesOnly) |
CloseableIterator<RavenJObject> |
IDatabaseCommands.streamQuery(String index,
IndexQuery query,
Reference<QueryHeaderInformation> queryHeaderInfo)
Queries the specified index in the Raven flavored Lucene query syntax.
|
RavenJObjectIterator |
ServerClient.streamQuery(String index,
IndexQuery query,
Reference<QueryHeaderInformation> queryHeaderInfo) |
Operation |
IDatabaseCommands.updateByIndex(String indexName,
IndexQuery queryToUpdate,
PatchRequest[] patchRequests)
Perform a set based update using the specified index
|
Operation |
ServerClient.updateByIndex(String indexName,
IndexQuery queryToUpdate,
PatchRequest[] patchRequests) |
Operation |
IDatabaseCommands.updateByIndex(String indexName,
IndexQuery queryToUpdate,
PatchRequest[] patchRequests,
BulkOperationOptions options)
Perform a set based update using the specified index
|
Operation |
ServerClient.updateByIndex(String indexName,
IndexQuery queryToUpdate,
PatchRequest[] patchRequests,
BulkOperationOptions options) |
Operation |
IDatabaseCommands.updateByIndex(String indexName,
IndexQuery queryToUpdate,
ScriptedPatchRequest patch)
Perform a set based update using the specified index
|
Operation |
ServerClient.updateByIndex(String indexName,
IndexQuery queryToUpdate,
ScriptedPatchRequest patch) |
Operation |
IDatabaseCommands.updateByIndex(String indexName,
IndexQuery queryToUpdate,
ScriptedPatchRequest patch,
BulkOperationOptions options)
Perform a set based update using the specified index
|
Operation |
ServerClient.updateByIndex(String indexName,
IndexQuery queryToUpdate,
ScriptedPatchRequest patch,
BulkOperationOptions options) |
Modifier and Type | Field and Description |
---|---|
protected Action1<IndexQuery> |
AbstractDocumentQuery.beforeQueryExecutionAction |
Modifier and Type | Method and Description |
---|---|
protected IndexQuery |
AbstractDocumentQuery.generateIndexQuery(String query)
Generates the index query.
|
IndexQuery |
AbstractDocumentQuery.getIndexQuery() |
Modifier and Type | Method and Description |
---|---|
DocumentQueryCustomizationFactory |
DocumentQueryCustomizationFactory.beforeQueryExecution(Action1<IndexQuery> action)
Allow you to modify the index query before it is executed
|
IDocumentQueryCustomization |
DocumentQueryCustomization.beforeQueryExecution(Action1<IndexQuery> action) |
IDocumentQuery<T> |
AbstractDocumentQuery.beforeQueryExecution(Action1<IndexQuery> action) |
Constructor and Description |
---|
LazyFacetsOperation(String index,
List<Facet> facets,
IndexQuery query) |
LazyFacetsOperation(String index,
List<Facet> facets,
IndexQuery query,
int start) |
LazyFacetsOperation(String index,
List<Facet> facets,
IndexQuery query,
int start,
Integer pageSize) |
LazyFacetsOperation(String index,
String facetSetupDoc,
IndexQuery query) |
LazyFacetsOperation(String index,
String facetSetupDoc,
IndexQuery query,
int start) |
LazyFacetsOperation(String index,
String facetSetupDoc,
IndexQuery query,
int start,
Integer pageSize) |
Modifier and Type | Method and Description |
---|---|
IndexQuery |
QueryOperation.getIndexQuery() |
Constructor and Description |
---|
QueryOperation(InMemoryDocumentSessionOperations sessionOperations,
String indexName,
IndexQuery indexQuery,
String[] projectionFields,
boolean waitForNonStaleResults,
long timeout,
ShardReduceFunction transformResults,
Set<String> includes,
boolean disableEntitiesTracking) |
Modifier and Type | Method and Description |
---|---|
IndexQuery |
RavenQueryInspector.getIndexQuery() |
Modifier and Type | Method and Description |
---|---|
IndexQuery |
ShardRequestData.getQuery() |
Modifier and Type | Method and Description |
---|---|
List<Object> |
ShardReduceFunction.apply(IndexQuery indexQuery,
List<Object> results) |
QueryResult |
ShardStrategy.defaultMergeQueryResults(IndexQuery query,
List<QueryResult> queryResults)
Merge the query results from all the shards into a single query results object by simply
concatenating all of the values
|
void |
ShardRequestData.setQuery(IndexQuery query) |
Copyright © 2016. All Rights Reserved.