public class SolrIndexSearcher extends IndexSearcher implements SolrInfoMBean
Modifier and Type | Class and Description |
---|---|
static class |
SolrIndexSearcher.ProcessedFilter |
static class |
SolrIndexSearcher.QueryCommand
A query request command to avoid having to change the method signatures
if we want to pass additional information to the searcher.
|
static class |
SolrIndexSearcher.QueryResult
The result of a search.
|
static class |
SolrIndexSearcher.TermDocsState |
SolrInfoMBean.Category
Modifier and Type | Field and Description |
---|---|
boolean |
enableLazyFieldLoading |
static int |
GET_DOCLIST |
static int |
GET_DOCSET |
static int |
GET_SCORES |
static AtomicLong |
numCloses |
static AtomicLong |
numOpens |
docStarts, subReaders, subSearchers
Constructor and Description |
---|
SolrIndexSearcher(SolrCore core,
IndexSchema schema,
String name,
Directory directory,
boolean enableCache) |
SolrIndexSearcher(SolrCore core,
IndexSchema schema,
String name,
Directory directory,
boolean readOnly,
boolean enableCache)
Creates a searcher searching the index in the provided directory.
|
SolrIndexSearcher(SolrCore core,
IndexSchema schema,
String name,
IndexReader r,
boolean enableCache)
Creates a searcher searching the provided index.
|
SolrIndexSearcher(SolrCore core,
IndexSchema schema,
String name,
IndexReader r,
boolean closeReader,
boolean enableCache) |
SolrIndexSearcher(SolrCore core,
IndexSchema schema,
String name,
String path,
boolean enableCache)
Deprecated.
use alternate constructor
|
Modifier and Type | Method and Description |
---|---|
void |
cacheDocSet(Query query,
DocSet optionalAnswer,
boolean mustCache)
Compute and cache the DocSet that matches a query.
|
Object |
cacheInsert(String cacheName,
Object key,
Object val)
insert an entry in a generic cache
|
Object |
cacheLookup(String cacheName,
Object key)
lookup an entry in a generic cache
|
void |
close()
Free's resources associated with this searcher.
|
DocSet |
convertFilter(Filter lfilter)
Converts a filter into a DocSet.
|
Document |
doc(int i)
Retrieve the
Document instance corresponding to the document id. |
Document |
doc(int n,
FieldSelector fieldSelector)
Retrieve a
Document using a FieldSelector
This method does not currently use the Solr document cache. |
Document |
doc(int i,
Set<String> fields)
Retrieve the
Document instance corresponding to the document id. |
Explanation |
explain(Query query,
int doc) |
SolrCache |
getCache(String cacheName)
return the named generic cache
|
SolrInfoMBean.Category |
getCategory()
Purpose of this Class
|
SolrCore |
getCore() |
String |
getDescription()
Simple one or two line description
|
DocList |
getDocList(Query query,
DocSet filter,
Sort lsort,
int offset,
int len)
Returns documents matching both
query and filter
and sorted by sort . |
DocList |
getDocList(Query query,
List<Query> filterList,
Sort lsort,
int offset,
int len,
int flags)
Returns documents matching both
query and the
intersection of the filterList , sorted by sort . |
DocList |
getDocList(Query query,
Query filter,
Sort lsort,
int offset,
int len)
Returns documents matching both
query and filter
and sorted by sort . |
DocListAndSet |
getDocListAndSet(Query query,
DocSet filter,
Sort lsort,
int offset,
int len)
Returns documents matching both
query and filter
and sorted by sort . |
DocListAndSet |
getDocListAndSet(Query query,
DocSet filter,
Sort lsort,
int offset,
int len,
int flags)
Returns documents matching both
query and filter
and sorted by sort . |
DocListAndSet |
getDocListAndSet(Query query,
List<Query> filterList,
Sort lsort,
int offset,
int len)
Returns documents matching both
query and the intersection
of filterList , sorted by sort . |
DocListAndSet |
getDocListAndSet(Query query,
List<Query> filterList,
Sort lsort,
int offset,
int len,
int flags)
Returns documents matching both
query and the intersection
of filterList , sorted by sort . |
DocListAndSet |
getDocListAndSet(Query query,
Query filter,
Sort lsort,
int offset,
int len)
Returns documents matching both
query and filter
and sorted by sort . |
DocListAndSet |
getDocListAndSet(Query query,
Query filter,
Sort lsort,
int offset,
int len,
int flags)
Returns documents matching both
query and filter
and sorted by sort . |
URL[] |
getDocs()
Documentation URL list.
|
DocSet |
getDocSet(List<Query> queries)
Returns the set of document ids matching all queries.
|
DocSet |
getDocSet(Query query)
Returns the set of document ids matching a query.
|
DocSet |
getDocSet(Query query,
DocSet filter)
Returns the set of document ids matching both the query and the filter.
|
protected DocSet |
getDocSetNC(Query query,
DocSet filter) |
protected DocSet |
getDocSetNC(Query query,
DocSet filter,
SolrIndexSearcher.TermDocsState tdState) |
Collection<String> |
getFieldNames()
Returns a collection of all field names the index reader knows about.
|
SolrCache |
getFieldValueCache()
expert: internal API, subject to change
|
int |
getFirstMatch(Term t)
Returns the first document number containing the term
t
Returns -1 if no document was found. |
String |
getIndexDir() |
String |
getName()
Simple common usage name, e.g.
|
long |
getOpenTime() |
DocSet |
getPositiveDocSet(Query q,
SolrIndexSearcher.TermDocsState tdState) |
SolrIndexSearcher.ProcessedFilter |
getProcessedFilter(DocSet setFilter,
List<Query> queries) |
SolrIndexReader |
getReader()
Direct access to the IndexReader used by this searcher
|
IndexSchema |
getSchema()
Direct access to the IndexSchema for use with this searcher
|
String |
getSource()
CVS Source, SVN Source, etc
|
String |
getSourceId()
CVS Id, SVN Id, etc
|
NamedList |
getStatistics()
Any statistics this instance would like to be publicly available via
the Solr Administration interface.
|
Collection<String> |
getStoredHighlightFieldNames()
Returns a collection of the names of all stored fields which can be
highlighted the index reader knows about.
|
String |
getVersion()
Simple common usage version, e.g. 2.0
|
static void |
initRegenerators(SolrConfig solrConfig) |
int |
numDocs(Query a,
DocSet b)
Returns the number of documents that match both
a and b . |
int |
numDocs(Query a,
Query b)
Returns the number of documents that match both
a and b . |
Document[] |
readDocs(DocList ids)
Takes a list of docs (the doc ids actually), and returns an array
of Documents containing all of the stored fields.
|
void |
readDocs(Document[] docs,
DocList ids)
Takes a list of docs (the doc ids actually), and reads them into an array
of Documents.
|
void |
readDocs(Document[] docs,
DocList ids,
Set<String> fields)
Takes a list of docs (the doc ids actually) and a set of fields to load,
and reads them into an array of Documents.
|
void |
register()
Register sub-objects such as caches
|
SolrIndexSearcher.QueryResult |
search(SolrIndexSearcher.QueryResult qr,
SolrIndexSearcher.QueryCommand cmd) |
protected DocList |
sortDocSet(DocSet set,
Sort sort,
int nDocs) |
String |
toString() |
void |
warm(SolrIndexSearcher old)
Warm this searcher based on an old one (primarily for auto-cache warming).
|
Sort |
weightSort(Sort sort)
Returns a weighted sort according to this searcher
|
createNormalizedWeight, docFreq, explain, gatherSubReaders, getIndexReader, getSimilarity, getSubReaders, maxDoc, rewrite, search, search, search, search, search, search, search, search, search, search, search, searchAfter, searchAfter, setDefaultFieldSortScoring, setSimilarity
createWeight, docFreqs
public static final AtomicLong numOpens
public static final AtomicLong numCloses
public final boolean enableLazyFieldLoading
public static final int GET_DOCSET
public static final int GET_DOCLIST
public static final int GET_SCORES
@Deprecated public SolrIndexSearcher(SolrCore core, IndexSchema schema, String name, String path, boolean enableCache) throws IOException
IOException
public SolrIndexSearcher(SolrCore core, IndexSchema schema, String name, Directory directory, boolean enableCache) throws IOException
IOException
public SolrIndexSearcher(SolrCore core, IndexSchema schema, String name, Directory directory, boolean readOnly, boolean enableCache) throws IOException
IOException
public SolrIndexSearcher(SolrCore core, IndexSchema schema, String name, IndexReader r, boolean enableCache)
public SolrIndexSearcher(SolrCore core, IndexSchema schema, String name, IndexReader r, boolean closeReader, boolean enableCache)
public String toString()
toString
in class IndexSearcher
public SolrCore getCore()
public void register()
public void close() throws IOException
close
in interface Closeable
close
in interface Searchable
close
in class IndexSearcher
IOException
public SolrIndexReader getReader()
public IndexSchema getSchema()
public Collection<String> getFieldNames()
public Collection<String> getStoredHighlightFieldNames()
public static void initRegenerators(SolrConfig solrConfig)
public SolrIndexSearcher.QueryResult search(SolrIndexSearcher.QueryResult qr, SolrIndexSearcher.QueryCommand cmd) throws IOException
IOException
public String getIndexDir()
SolrIndexSearcher(SolrCore, IndexSchema, String, Directory, boolean)
public Document doc(int i) throws IOException
Document
instance corresponding to the document id.doc
in interface Searchable
doc
in class IndexSearcher
IOException
public Document doc(int n, FieldSelector fieldSelector) throws IOException
Document
using a FieldSelector
This method does not currently use the Solr document cache.doc
in interface Searchable
doc
in class IndexSearcher
IOException
IndexReader.document(int, FieldSelector)
public Document doc(int i, Set<String> fields) throws IOException
Document
instance corresponding to the document id.
Note: The document will have all fields accessable, but if a field
filter is provided, only the provided fields will be loaded (the
remainder will be available lazily).IOException
public void readDocs(Document[] docs, DocList ids) throws IOException
IOException
public void readDocs(Document[] docs, DocList ids, Set<String> fields) throws IOException
IOException
public SolrCache getFieldValueCache()
public Sort weightSort(Sort sort) throws IOException
IOException
public int getFirstMatch(Term t) throws IOException
t
Returns -1 if no document was found.
This method is primarily intended for clients that want to fetch
documents using a unique identifier."t
- IOException
public void cacheDocSet(Query query, DocSet optionalAnswer, boolean mustCache) throws IOException
If the optionalAnswer DocSet is provided, it should *not* be modified after this call.
query
- the lucene query that will act as the keyoptionalAnswer
- the DocSet to be cached - if null, it will be computed.mustCache
- if true, a best effort will be made to cache this entry.
if false, heuristics may be used to determine if it should be cached.IOException
public DocSet getDocSet(Query query) throws IOException
The DocSet returned should not be modified.
IOException
public DocSet getPositiveDocSet(Query q, SolrIndexSearcher.TermDocsState tdState) throws IOException
IOException
public DocSet getDocSet(List<Query> queries) throws IOException
The DocSet returned should not be modified.
IOException
public SolrIndexSearcher.ProcessedFilter getProcessedFilter(DocSet setFilter, List<Query> queries) throws IOException
IOException
protected DocSet getDocSetNC(Query query, DocSet filter) throws IOException
IOException
protected DocSet getDocSetNC(Query query, DocSet filter, SolrIndexSearcher.TermDocsState tdState) throws IOException
IOException
public DocSet getDocSet(Query query, DocSet filter) throws IOException
query
- filter
- may be nullIOException
public DocSet convertFilter(Filter lfilter) throws IOException
IOException
public DocList getDocList(Query query, Query filter, Sort lsort, int offset, int len) throws IOException
query
and filter
and sorted by sort
.
This method is cache aware and may retrieve filter
from
the cache or make an insertion into the cache as a result of this call.
FUTURE: The returned DocList may be retrieved from a cache.
query
- filter
- may be nulllsort
- criteria by which to sort (if null, query relevance is used)offset
- offset into the list of documents to returnlen
- maximum number of documents to returnIOException
public DocList getDocList(Query query, List<Query> filterList, Sort lsort, int offset, int len, int flags) throws IOException
query
and the
intersection of the filterList
, sorted by sort
.
This method is cache aware and may retrieve filter
from
the cache or make an insertion into the cache as a result of this call.
FUTURE: The returned DocList may be retrieved from a cache.
query
- filterList
- may be nulllsort
- criteria by which to sort (if null, query relevance is used)offset
- offset into the list of documents to returnlen
- maximum number of documents to returnIOException
public DocList getDocList(Query query, DocSet filter, Sort lsort, int offset, int len) throws IOException
query
and filter
and sorted by sort
.
FUTURE: The returned DocList may be retrieved from a cache.query
- filter
- may be nulllsort
- criteria by which to sort (if null, query relevance is used)offset
- offset into the list of documents to returnlen
- maximum number of documents to returnIOException
public DocListAndSet getDocListAndSet(Query query, Query filter, Sort lsort, int offset, int len) throws IOException
query
and filter
and sorted by sort
. Also returns the complete set of documents
matching query
and filter
(regardless of offset
and len
).
This method is cache aware and may retrieve filter
from
the cache or make an insertion into the cache as a result of this call.
FUTURE: The returned DocList may be retrieved from a cache.
The DocList and DocSet returned should not be modified.
query
- filter
- may be nulllsort
- criteria by which to sort (if null, query relevance is used)offset
- offset into the list of documents to returnlen
- maximum number of documents to returnIOException
public DocListAndSet getDocListAndSet(Query query, Query filter, Sort lsort, int offset, int len, int flags) throws IOException
query
and filter
and sorted by sort
. Also returns the compete set of documents
matching query
and filter
(regardless of offset
and len
).
This method is cache aware and may retrieve filter
from
the cache or make an insertion into the cache as a result of this call.
FUTURE: The returned DocList may be retrieved from a cache.
The DocList and DocSet returned should not be modified.
query
- filter
- may be nulllsort
- criteria by which to sort (if null, query relevance is used)offset
- offset into the list of documents to returnlen
- maximum number of documents to returnflags
- user supplied flags for the result setIOException
public DocListAndSet getDocListAndSet(Query query, List<Query> filterList, Sort lsort, int offset, int len) throws IOException
query
and the intersection
of filterList
, sorted by sort
.
Also returns the compete set of documents
matching query
and filter
(regardless of offset
and len
).
This method is cache aware and may retrieve filter
from
the cache or make an insertion into the cache as a result of this call.
FUTURE: The returned DocList may be retrieved from a cache.
The DocList and DocSet returned should not be modified.
query
- filterList
- may be nulllsort
- criteria by which to sort (if null, query relevance is used)offset
- offset into the list of documents to returnlen
- maximum number of documents to returnIOException
public DocListAndSet getDocListAndSet(Query query, List<Query> filterList, Sort lsort, int offset, int len, int flags) throws IOException
query
and the intersection
of filterList
, sorted by sort
.
Also returns the compete set of documents
matching query
and filter
(regardless of offset
and len
).
This method is cache aware and may retrieve filter
from
the cache or make an insertion into the cache as a result of this call.
FUTURE: The returned DocList may be retrieved from a cache.
The DocList and DocSet returned should not be modified.
query
- filterList
- may be nulllsort
- criteria by which to sort (if null, query relevance is used)offset
- offset into the list of documents to returnlen
- maximum number of documents to returnflags
- user supplied flags for the result setIOException
public DocListAndSet getDocListAndSet(Query query, DocSet filter, Sort lsort, int offset, int len) throws IOException
query
and filter
and sorted by sort
. Also returns the compete set of documents
matching query
and filter
(regardless of offset
and len
).
FUTURE: The returned DocList may be retrieved from a cache.
query
- filter
- may be nulllsort
- criteria by which to sort (if null, query relevance is used)offset
- offset into the list of documents to returnlen
- maximum number of documents to returnIOException
public DocListAndSet getDocListAndSet(Query query, DocSet filter, Sort lsort, int offset, int len, int flags) throws IOException
query
and filter
and sorted by sort
. Also returns the compete set of documents
matching query
and filter
(regardless of offset
and len
).
This method is cache aware and may make an insertion into the cache as a result of this call.
FUTURE: The returned DocList may be retrieved from a cache.
The DocList and DocSet returned should not be modified.
query
- filter
- may be nulllsort
- criteria by which to sort (if null, query relevance is used)offset
- offset into the list of documents to returnlen
- maximum number of documents to returnflags
- user supplied flags for the result setIOException
protected DocList sortDocSet(DocSet set, Sort sort, int nDocs) throws IOException
IOException
public int numDocs(Query a, DocSet b) throws IOException
a
and b
.
This method is cache-aware and may check as well as modify the cache.
a
- b
- a
and b
.IOException
public int numDocs(Query a, Query b) throws IOException
a
and b
.
This method is cache-aware and may check as well as modify the cache.
a
- b
- a
and b
.IOException
public Document[] readDocs(DocList ids) throws IOException
IOException
public void warm(SolrIndexSearcher old) throws IOException
IOException
public Object cacheLookup(String cacheName, Object key)
public Object cacheInsert(String cacheName, Object key, Object val)
public long getOpenTime()
public Explanation explain(Query query, int doc) throws IOException
explain
in class IndexSearcher
IOException
public String getName()
SolrInfoMBean
getName
in interface SolrInfoMBean
public String getVersion()
SolrInfoMBean
getVersion
in interface SolrInfoMBean
public String getDescription()
SolrInfoMBean
getDescription
in interface SolrInfoMBean
public SolrInfoMBean.Category getCategory()
SolrInfoMBean
getCategory
in interface SolrInfoMBean
public String getSourceId()
SolrInfoMBean
getSourceId
in interface SolrInfoMBean
public String getSource()
SolrInfoMBean
getSource
in interface SolrInfoMBean
public URL[] getDocs()
SolrInfoMBean
Suggested documentation URLs: Homepage for sponsoring project, FAQ on class usage, Design doc for class, Wiki, bug reporting URL, etc...
getDocs
in interface SolrInfoMBean
public NamedList getStatistics()
SolrInfoMBean
Any Object type may be stored in the list, but only the
toString()
representation will be used.
getStatistics
in interface SolrInfoMBean