Package | Description |
---|---|
com.gemstone.gemfire.cache.query |
GemFire's query service, an implementation of an OQL/SQL-style
query processor with supporting indexes.
|
Modifier and Type | Method and Description |
---|---|
Index |
QueryService.createHashIndex(String indexName,
String indexedExpression,
String regionPath)
Create a hash index that can be used when executing equal and not equal
queries.
|
Index |
QueryService.createHashIndex(String indexName,
String indexedExpression,
String regionPath,
String imports)
Create a hash index that can be used when executing equal and not equal
queries.
|
Index |
QueryService.createIndex(String indexName,
IndexType indexType,
String indexedExpression,
String fromClause)
Deprecated.
As of 6.6.2, use
QueryService.createIndex(String, String, String) and
QueryService.createKeyIndex(String, String, String) instead.
Create an index that can be used when executing queries. |
Index |
QueryService.createIndex(String indexName,
IndexType indexType,
String indexedExpression,
String fromClause,
String imports)
Deprecated.
As of 6.6.2, use
QueryService.createIndex(String, String, String, String) and
QueryService.createKeyIndex(String, String, String) instead.
Create an index that can be used when executing queries. |
Index |
QueryService.createIndex(String indexName,
String indexedExpression,
String regionPath)
Create an index that can be used when executing queries.
|
Index |
QueryService.createIndex(String indexName,
String indexedExpression,
String regionPath,
String imports)
Create an index that can be used when executing queries.
|
Index |
QueryService.createKeyIndex(String indexName,
String indexedExpression,
String regionPath)
Create a key index that can be used when executing queries.
|
Index |
QueryService.getIndex(Region<?,?> region,
String indexName)
Get the Index from the specified Region with the specified name.
|
Modifier and Type | Method and Description |
---|---|
List<Index> |
QueryService.createDefinedIndexes()
Creates all the indexes that were defined using
QueryService.defineIndex(String, String, String) |
Collection<Index> |
QueryService.getIndexes()
Get a collection of all the indexes in the Cache.
|
Collection<Index> |
QueryService.getIndexes(Region<?,?> region)
Get a collection of all the indexes on the specified Region
|
Collection<Index> |
QueryService.getIndexes(Region<?,?> region,
IndexType indexType)
Deprecated.
As of 6.6.2, use
QueryService.getIndexes(Region) only.
Get a collection of all the indexes on the specified Region of
the specified index type. |
Modifier and Type | Method and Description |
---|---|
void |
QueryService.removeIndex(Index index)
Remove the specified index.
|
Copyright © 1997-2017 Pivotal Software, Inc. All rights reserved.