Reputation: 23
I'm looking for a tutorial about faceted search using java and lucene 3.6. I don't want to user solr. I need something that describe the steps needed to make the index (with categories, etc.) and how to do the search, classes and methods to use, etc. Thanks in advance...
Upvotes: 1
Views: 5147
Reputation: 159
I think this may help you. It is official user guide. 1. http://lucene.apache.org/core/3_6_1/api/contrib-facet/org/apache/lucene/facet/doc-files/userguide.html 2. http://shaierera.blogspot.com/2012/11/lucene-facets-part-1.html
Upvotes: 2
Reputation: 146
But on the same blog there's a tutorial how to achieve faceting using Hibernate Search so there is Lucene and JPA under the hood but perhaps this is not a combination that you're searching for:
In the Lucene 4.x documentation there's a whole chapter about this topic but it is an early release:
If you've found a better source, please keep us up to date :)
Upvotes: 0
Reputation: 1195
Here is a a tutorial for generating a quick Lucene search - http://www.hascode.com/2010/03/how-to-build-a-quick-lucene-search/
It might be a bit too basic for you though
Upvotes: 1