Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Beginners Lucene tutorial [closed]

Tags:

java

lucene

I've never done anything in Java before but I'd like to use Lucene for the search on a site.

I'm having trouble find a good step by step tutorial for a complete beginner at this.

Can anyone recommend a good tutorial?

Thanks

like image 387
ianckc Avatar asked Nov 18 '10 19:11

ianckc


4 Answers

Along with user428747 answer, you can also read this article.

As well as this one (which is kind of old compared to the first one).

On a side note, if you want to use Lucene, did you consider using Solr? It uses the lucene search library and extends it as you can read here.

like image 133
Fanny H. Avatar answered Oct 02 '22 10:10

Fanny H.


The classics: Lucene in Action

like image 41
buru Avatar answered Oct 02 '22 10:10

buru


this website might help you a bit..

http://www.lucenetutorial.com/lucene-in-5-minutes.html

like image 11
user428747 Avatar answered Oct 02 '22 10:10

user428747


This is not a direct reply to your question on Lucene tutorials (For that, my answer is same as some of the other posters: Bob Carpenter's Lucene in 60 seconds tutorial on the Lingpipe blog).

If you don't want to learn Java just for Lucene, any full-text search database (Postgres/Mysql/etc) should solve your purpose. In particular Sphinx is recommended.

This decision particularly relevant if you need your search app to have high performance / scalability (since you will be learning two things - Java and Lucene). Unless you have an in-house java expert, it is better to fight one war than two at the same time.

like image 1
hashable Avatar answered Oct 02 '22 10:10

hashable