I want to fetch all hits from lucene. Is there any wild card character which fetches all records?

link|improve this question

23% accept rate
Show us what you've tried and describe how it hasn't worked, alternatively perhaps the Lucene documentation might be a good place to start? – Lazarus Sep 24 '09 at 15:05
Do you mean you want to return all documents from Lucene rather than all Hits? – Lazarus Sep 24 '09 at 15:06
feedback

2 Answers

up vote 3 down vote accepted

Might this class in Lucene.Net serve your purpose? MatchAllDocsQuery

link|improve this answer
feedback

It worked. Thank You.

The code goes like this:

searcher = new Lucene.Net.Search.IndexSearcher(IndexPath);

Lucene.Net.Search.MatchAllDocsQuery objMatchAll = new Lucene.Net.Search.MatchAllDocsQuery();

Lucene.Net.Search.Hits hits = searcher.Search(objMatchAll);

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.