Uses of Interface
org.infinispan.query.CacheQuery
-
Packages that use CacheQuery Package Description org.infinispan.query Query API.org.infinispan.query.clustered org.infinispan.query.impl Query module internals.org.infinispan.query.spi -
-
Uses of CacheQuery in org.infinispan.query
Methods in org.infinispan.query that return CacheQuery Modifier and Type Method Description CacheQuery<E>CacheQuery. disableFullTextFilter(String name)Deprecated.Disable a given filter by its name.CacheQuery<E>CacheQuery. filter(org.apache.lucene.search.Filter f)Deprecated.Allows lucene to filter the results.CacheQuery<E>CacheQuery. firstResult(int index)Deprecated.Sets a result with a given index to the first result.<E> CacheQuery<E>SearchManager. getQuery(String queryString)Deprecated.since 11.0, all search operations should be done with theSearchentry point.<E> CacheQuery<E>SearchManager. getQuery(String queryString, org.infinispan.query.dsl.IndexedQueryMode indexedQueryMode)Deprecated.since 11.0 with no replacement.CacheQuery<E>CacheQuery. maxResults(int numResults)Deprecated.Sets the maximum number of results to the number passed in as a parameter.CacheQuery<Object[]>CacheQuery. projection(String... fields)Deprecated.Defines the Lucene field names projected and returned in a query result Each field is converted back to it's object representation, an Object[] being returned for each "row"CacheQuery<E>CacheQuery. sort(org.apache.lucene.search.Sort s)Deprecated.Allows lucene to sort the results.CacheQuery<E>CacheQuery. timeout(long timeout, TimeUnit timeUnit)Deprecated.Set the timeout for this query. -
Uses of CacheQuery in org.infinispan.query.clustered
Classes in org.infinispan.query.clustered that implement CacheQuery Modifier and Type Class Description classClusteredCacheQueryImpl<E>An extension of CacheQueryImpl used for distributed queries. -
Uses of CacheQuery in org.infinispan.query.impl
Subinterfaces of CacheQuery in org.infinispan.query.impl Modifier and Type Interface Description interfaceIndexedQuery<E>A distributed Lucene query.Classes in org.infinispan.query.impl that implement CacheQuery Modifier and Type Class Description classCacheQueryImpl<E>Implementation class of the CacheQuery interface.Methods in org.infinispan.query.impl that return CacheQuery Modifier and Type Method Description <E> CacheQuery<E>SearchManagerImpl. getQuery(String queryString)<E> CacheQuery<E>SearchManagerImpl. getQuery(String queryString, org.infinispan.query.dsl.IndexedQueryMode indexedQueryMode)<E> CacheQuery<E>SearchManagerImpl. getQuery(org.apache.lucene.search.Query luceneQuery, org.infinispan.query.dsl.IndexedQueryMode indexedQueryMode, Class<?> entity)<E> CacheQuery<E>SearchManagerImpl. getQuery(QueryDefinition queryDefinition, org.infinispan.query.dsl.IndexedQueryMode indexedQueryMode, org.hibernate.search.spi.IndexedTypeMap<org.hibernate.search.spi.CustomTypeMetadata> indexedTypeMap) -
Uses of CacheQuery in org.infinispan.query.spi
Methods in org.infinispan.query.spi that return CacheQuery Modifier and Type Method Description <E> CacheQuery<E>SearchManagerImplementor. getQuery(org.apache.lucene.search.Query luceneQuery, org.infinispan.query.dsl.IndexedQueryMode indexedQueryMode, Class<?> entity)Deprecated.Since 11.0 without replacement.<E> CacheQuery<E>SearchManagerImplementor. getQuery(QueryDefinition queryDefinition, org.infinispan.query.dsl.IndexedQueryMode indexedQueryMode, org.hibernate.search.spi.IndexedTypeMap<org.hibernate.search.spi.CustomTypeMetadata> indexedTypeMap)Deprecated.Since 11.0, without replacement.
-