Uses of Class
org.apache.ignite.internal.processors.cache.query.CacheQuery
-
Packages that use CacheQuery Package Description org.apache.ignite.internal.processors.cache.query -
-
Uses of CacheQuery in org.apache.ignite.internal.processors.cache.query
Methods in org.apache.ignite.internal.processors.cache.query that return CacheQuery Modifier and Type Method Description CacheQuery<Map.Entry<K,V>>GridCacheQueryManager. createFullTextQuery(String clsName, String search, int limit, int pageSize, boolean keepBinary)Creates user's full text query, queried class, and query clause.<R> CacheQuery<R>GridCacheQueryManager. createIndexQuery(IndexQuery qry, boolean keepBinary)Creates index query.<T,R>
CacheQuery<R>GridCacheQueryManager. createScanQuery(@Nullable IgniteBiPredicate<K,V> filter, @Nullable IgniteClosure<T,R> trans, @Nullable Integer part, boolean keepBinary, boolean forceLocal, Boolean dataPageScanEnabled, Set<KeyCacheObject> skipKeys)Creates user's predicate based scan query.<R> CacheQuery<R>GridCacheQueryManager. createSpiQuery(boolean keepBinary)Query forIndexingSpi.CacheQuery<T>CacheQuery. enableDedup(boolean dedup)Sets whether or not to deduplicate query result set.CacheQuery<T>CacheQuery. includeBackups(boolean incBackups)Sets whether or not to include backup entries into query result.CacheQuery<T>CacheQuery. limit(int limit)Sets limit of returned records.CacheQuery<T>CacheQuery. pageSize(int pageSize)Sets result page size.CacheQuery<T>CacheQuery. projection(ClusterGroup prj)Sets optional grid projection to execute this query on.CacheQuery<?>GridCacheQueryBean. query()CacheQuery<T>CacheQuery. timeout(long timeout)Sets query timeout.Methods in org.apache.ignite.internal.processors.cache.query with parameters of type CacheQuery Modifier and Type Method Description GridCloseableIteratorGridCacheQueryManager. indexQueryLocal(CacheQuery qry)Process local index query.static GridCacheQueryRequestGridCacheQueryRequest. pageRequest(GridCacheContext<?,?> cctx, long reqId, CacheQuery<?> qry, boolean fields)Send request for fetching query result pages to specified nodes.GridCloseableIteratorGridCacheDistributedQueryManager. scanQueryDistributed(CacheQuery qry, Collection<ClusterNode> nodes)Executes distributed SCAN query.abstract GridCloseableIteratorGridCacheQueryManager. scanQueryDistributed(CacheQuery qry, Collection<ClusterNode> nodes)Executes distributed SCAN query.protected GridCloseableIteratorGridCacheQueryManager. scanQueryLocal(CacheQuery qry, boolean updateStatistics)Process local scan query.Constructors in org.apache.ignite.internal.processors.cache.query with parameters of type CacheQuery Constructor Description AbstractScanQueryIterator(GridCacheContext<K,V> cctx, CacheQuery<R> qry, IgniteClosure<javax.cache.Cache.Entry<K,V>,R> transform, boolean locNode)GridCacheQueryBean(CacheQuery<?> qry, @Nullable IgniteReducer<Object,Object> rdc, @Nullable IgniteClosure<?,?> trans, @Nullable Object[] args)
-