Uses of Interface
org.apache.solr.search.DocList

Packages that use DocList
org.apache.solr.request   
org.apache.solr.search   
org.apache.solr.util   
 

Uses of DocList in org.apache.solr.request
 

Methods in org.apache.solr.request with parameters of type DocList
 void XMLWriter.writeDocList(java.lang.String name, DocList ids, java.util.Set<java.lang.String> fields)
           
abstract  void TextResponseWriter.writeDocList(java.lang.String name, DocList ids, java.util.Set<java.lang.String> fields, java.util.Map otherFields)
           
 

Uses of DocList in org.apache.solr.search
 

Classes in org.apache.solr.search that implement DocList
 class DocSlice
          DocSlice implements DocList as an array of docids and optional scores.
 

Fields in org.apache.solr.search declared as DocList
 DocList DocListAndSet.docList
           
 

Methods in org.apache.solr.search that return DocList
 DocList SolrIndexSearcher.getDocList(org.apache.lucene.search.Query query, DocSet filter, org.apache.lucene.search.Sort lsort, int offset, int len)
          Returns documents matching both query and filter and sorted by sort.
 DocList SolrIndexSearcher.getDocList(org.apache.lucene.search.Query query, java.util.List<org.apache.lucene.search.Query> filterList, org.apache.lucene.search.Sort lsort, int offset, int len, int flags)
          Returns documents matching both query and the intersection of the filterList, sorted by sort.
 DocList SolrIndexSearcher.getDocList(org.apache.lucene.search.Query query, org.apache.lucene.search.Query filter, org.apache.lucene.search.Sort lsort, int offset, int len)
          Returns documents matching both query and filter and sorted by sort.
protected  DocList SolrIndexSearcher.sortDocSet(DocSet set, org.apache.lucene.search.Sort sort, int nDocs)
           
 DocList DocSlice.subset(int offset, int len)
           
 DocList DocList.subset(int offset, int len)
          Get a subset of an existing DocList.
 

Methods in org.apache.solr.search with parameters of type DocList
 org.apache.lucene.document.Document[] SolrIndexSearcher.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 SolrIndexSearcher.readDocs(org.apache.lucene.document.Document[] docs, DocList ids)
          Takes a list of docs (the doc ids actually), and reads them into an array of Documents.
 void SolrIndexSearcher.readDocs(org.apache.lucene.document.Document[] docs, DocList ids, java.util.Set<java.lang.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.
 

Uses of DocList in org.apache.solr.util
 

Methods in org.apache.solr.util that return DocList
static DocList SolrPluginUtils.doSimpleQuery(java.lang.String sreq, SolrIndexSearcher searcher, IndexSchema schema, int start, int limit)
          Executes a basic query in lucene syntax
 

Methods in org.apache.solr.util with parameters of type DocList
static NamedList HighlightingUtils.doHighlighting(DocList docs, org.apache.lucene.search.Query query, SolrQueryRequest req, java.lang.String[] defaultFields)
          Generates a list of Highlighted query fragments for each item in a list of documents, or returns null if highlighting is disabled.
static NamedList SolrPluginUtils.doStandardDebug(SolrQueryRequest req, java.lang.String userQuery, org.apache.lucene.search.Query query, DocList results)
           Returns a NamedList containing many "standard" pieces of debugging information.
static NamedList SolrPluginUtils.doStandardDebug(SolrQueryRequest req, java.lang.String userQuery, org.apache.lucene.search.Query query, DocList results, CommonParams params)
          Deprecated. Use doStandardDebug(SolrQueryRequest,String,Query,DocList) with setDefaults
static NamedList SolrPluginUtils.getExplainList(org.apache.lucene.search.Query query, DocList docs, SolrIndexSearcher searcher, IndexSchema schema)
          Generates an list of Explanations for each item in a list of docs.
static void SolrPluginUtils.optimizePreFetchDocs(DocList docs, org.apache.lucene.search.Query query, SolrQueryRequest req, SolrQueryResponse res)
          Pre-fetch documents into the index searcher's document cache.
 



Copyright © 2006 - 2008 The Apache Software Foundation