vote up 1 vote down star

I'm using Lucene search API in a web based application. Which method of Lucene's IndexSearcher class is recommended to use?Is any method faster than other?

1.IndexSearcher(Directory directory) 2.IndexSearcher(IndexReader r) 3.IndexSearcher(String path)

Thanks for reading.

flag

55% accept rate
1  
You have 19 open questions and you haven't accepted a single answer. Please consider voting up and accepting answers – itsadok May 12 at 13:29

2 Answers

vote up 3 vote down check

The constructor which accepts Directory and path to index internally use the constructor that accpets IndexReader. So, there is no performance advantage of one over others. Keep in mind that if you create searcher with IndexReader, you have to close the reader explicitly after you close the searcher.

link|flag
vote up 0 vote down

It's all about convenience.

If you just want to create an IndexSearcher, use the one that accepts a path.

If you already have a Directory object, use the one that accepts a Directory.

And if you have an IndexReader... you get the point. Just remember that if you provided an IndexReader, you're expected to close it yourself after you've closed the IndexSearcher.

I highly recommend grabbing a copy of the Lucene source code. It is very readable, and can answer a lot of these questions.

link|flag
Can you please answer this one? stackoverflow.com/questions/899542/… – Steve Chapman Jun 12 at 2:43

Your Answer

Get an OpenID
or

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