Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can anyone suggest some good tutorials for Lucene? [closed]

Tags:

lucene

can anyone suggest me some good tutorials on Lucene. I was reading Lucene in Action, but it seems to be a old edition of current lucene. Most of the methods are deprecated.

Where to start? I am googling around a bit.

Thanks, Kapil

like image 849
Kapil D Avatar asked May 12 '09 20:05

Kapil D


3 Answers

It's true that there has been changes, but they're not as substantial as it might seem. The most radical change that I can think of is that the api for the IndexSearcher.search() method has changed, but it really isn't that difficult to adapt your code to the new usage.

In general, the old methods are still there but are marked as deprecated. This is a good thing, because the reference manual specifies what you should use instead.

Lucene in Action is a great book. Take a look at the second edition recommended by KenE if possible, but otherwise I think you'll get a long way using the first edition, the manual and some common sense. As I said, the changes are not as daunting as you could imagine.

like image 194
Emil H Avatar answered Sep 29 '22 08:09

Emil H


The second edition of Lucene in Action is available in electronic format here

like image 44
KenE Avatar answered Sep 29 '22 08:09

KenE


Lucid imagination is a company offering support and consulting related to Lucene. See their Lucene tutorial. They also have a search engine indexing lots of Lucene related material.

like image 29
Yuval F Avatar answered Sep 29 '22 10:09

Yuval F