Can anyone point me to the piece of solr source code which performs filter query (excecuting the fq=).
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Solr's main façade to Lucene is SolrIndexSearcher. In particular the getDocListC function seems to do the actual passing to Lucene. Filter queries and other parameters are passed via a QueryCommand class, you can see that filter queries is simply a list of |
|||
|
|