I've got an index where I need to get all documents with a standard search, still ranked by relevance, even if a document isn't a hit.

My first idea is to add a field that is always matched, but that might deform the relevance score.

link|improve this question

could you clarify if you need all the documents ordered by some measure? If so, you could open the index using IndexReader and loop through the documents collection. – Mikos Feb 14 at 16:44
In Solr you could use a query of ":" to retrieve all documents & all fields from the index. – Mikos Feb 14 at 16:45
feedback

1 Answer

up vote 2 down vote accepted
+100

Use a BooleanQuery to combine your original query with a MatchAllDocsQuery. You can mitigate the effect this has on scoring by setting the boost on the MatchAllDocsQuery to zero before you combine it with your main query. This way you don't have to add an otherwise bogus field to the index.

For example:

// Parse a query by the user.
QueryParser qp = new QueryParser(Version.LUCENE_35, "text", new StandardAnalyzer());
Query standardQuery = qp.parse("User query may go here");

// Make a query that matches everything, but has no boost.
MatchAllDocsQuery matchAllDocsQuery = new MatchAllDocsQuery();
matchAllDocsQuery.setBoost(0f);

// Combine the queries.
BooleanQuery boolQuery = new BooleanQuery();
boolQuery.add(standardQuery, BooleanClause.Occur.SHOULD);
boolQuery.add(matchAllDocsQuery, BooleanClause.Occur.SHOULD);

// Now just pass it to the searcher.

This should give you hits from standardQuery followed by the rest of the documents in the index.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.