| Package | Description |
|---|---|
| org.gridgain.grid.cache.query |
Contains APIs for creating and executing cache queries.
|
| org.gridgain.grid.kernal.processors.cache.query |
| Modifier and Type | Method and Description |
|---|---|
GridCacheQuery<Map.Entry<K,V>> |
GridCacheQueries.createFullTextQuery(Class<?> cls,
String search)
Creates user's full text query, queried class, and query clause.
|
GridCacheQuery<Map.Entry<K,V>> |
GridCacheQueries.createScanQuery(GridBiPredicate<K,V> filter)
Creates user's predicate based scan query.
|
GridCacheQuery<List<?>> |
GridCacheQueries.createSqlFieldsQuery(String qry)
Creates user's SQL fields query for given clause.
|
GridCacheQuery<Map.Entry<K,V>> |
GridCacheQueries.createSqlQuery(Class<?> cls,
String clause)
Creates user's SQL query, queried class, and query clause which is generally
a where clause.
|
GridCacheQuery<T> |
GridCacheQuery.enableDedup(boolean dedup)
Sets whether or not to deduplicate query result set.
|
GridCacheQuery<T> |
GridCacheQuery.includeBackups(boolean incBackups)
Sets whether or not to include backup entries into query result.
|
GridCacheQuery<T> |
GridCacheQuery.keepAll(boolean keepAll)
Sets whether or not to keep all query results local.
|
GridCacheQuery<T> |
GridCacheQuery.pageSize(int pageSize)
Sets result page size.
|
GridCacheQuery<T> |
GridCacheQuery.projection(GridProjection prj)
Sets optional grid projection to execute this query on.
|
GridCacheQuery<T> |
GridCacheQuery.timeout(long timeout)
Sets query timeout.
|
| Modifier and Type | Class and Description |
|---|---|
class |
GridCacheQueryAdapter<T>
Query adapter.
|
| Modifier and Type | Method and Description |
|---|---|
GridCacheQuery<Map.Entry<K,V>> |
GridCacheQueriesImpl.createFullTextQuery(Class<?> cls,
String search)
Creates user's full text query, queried class, and query clause.
|
GridCacheQuery<Map.Entry<K,V>> |
GridCacheQueriesProxy.createFullTextQuery(Class<?> cls,
String search)
Creates user's full text query, queried class, and query clause.
|
GridCacheQuery<Map.Entry<K,V>> |
GridCacheQueriesImpl.createScanQuery(GridBiPredicate<K,V> filter)
Creates user's predicate based scan query.
|
GridCacheQuery<Map.Entry<K,V>> |
GridCacheQueriesProxy.createScanQuery(GridBiPredicate<K,V> filter)
Creates user's predicate based scan query.
|
GridCacheQuery<List<?>> |
GridCacheQueriesImpl.createSqlFieldsQuery(String qry)
Creates user's SQL fields query for given clause.
|
GridCacheQuery<List<?>> |
GridCacheQueriesProxy.createSqlFieldsQuery(String qry)
Creates user's SQL fields query for given clause.
|
GridCacheQuery<List<?>> |
GridCacheQueriesEx.createSqlFieldsQuery(String qry,
boolean incMeta)
Creates SQL fields query which will include results metadata if needed.
|
GridCacheQuery<List<?>> |
GridCacheQueriesImpl.createSqlFieldsQuery(String qry,
boolean incMeta)
Creates SQL fields query which will include results metadata if needed.
|
GridCacheQuery<List<?>> |
GridCacheQueriesProxy.createSqlFieldsQuery(String qry,
boolean incMeta)
Creates SQL fields query which will include results metadata if needed.
|
GridCacheQuery<Map.Entry<K,V>> |
GridCacheQueriesImpl.createSqlQuery(Class<?> cls,
String clause)
Creates user's SQL query, queried class, and query clause which is generally
a where clause.
|
GridCacheQuery<Map.Entry<K,V>> |
GridCacheQueriesProxy.createSqlQuery(Class<?> cls,
String clause)
Creates user's SQL query, queried class, and query clause which is generally
a where clause.
|
GridCacheQuery<T> |
GridCacheQueryAdapter.enableDedup(boolean dedup)
Sets whether or not to deduplicate query result set.
|
GridCacheQuery<T> |
GridCacheQueryAdapter.includeBackups(boolean incBackups)
Sets whether or not to include backup entries into query result.
|
GridCacheQuery<T> |
GridCacheQueryAdapter.keepAll(boolean keepAll)
Sets whether or not to keep all query results local.
|
GridCacheQuery<T> |
GridCacheQueryAdapter.pageSize(int pageSize)
Sets result page size.
|
GridCacheQuery<T> |
GridCacheQueryAdapter.projection(GridProjection prj)
Sets optional grid projection to execute this query on.
|
GridCacheQuery<T> |
GridCacheQueryAdapter.timeout(long timeout)
Sets query timeout.
|
Copyright © 2014. All rights reserved.