CacheQuery<E> |
CacheQuery.disableFullTextFilter(String name) |
Disable a given filter by its name.
|
CacheQuery<E> |
CacheQuery.filter(org.apache.lucene.search.Filter f) |
Allows lucene to filter the results.
|
CacheQuery<E> |
CacheQuery.firstResult(int index) |
Sets a result with a given index to the first result.
|
<E> CacheQuery<E> |
SearchManager.getQuery(String queryString,
IndexedQueryMode indexedQueryMode,
Class<?>... classes) |
|
<E> CacheQuery<E> |
SearchManager.getQuery(org.apache.lucene.search.Query luceneQuery,
Class<?>... classes) |
Deprecated.
|
<E> CacheQuery<E> |
SearchManager.getQuery(org.apache.lucene.search.Query luceneQuery,
IndexedQueryMode indexedQueryMode,
Class<?>... classes) |
Deprecated.
|
CacheQuery<E> |
CacheQuery.maxResults(int numResults) |
Sets the maximum number of results to the number passed in as a parameter.
|
CacheQuery<Object[]> |
CacheQuery.projection(String... fields) |
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) |
Allows lucene to sort the results.
|
CacheQuery<E> |
CacheQuery.timeout(long timeout,
TimeUnit timeUnit) |
Set the timeout for this query.
|