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.
|
Copyright © 1997-2017 Pivotal Software, Inc. All rights reserved.