LuckyLuke
LuckyLuke

Reputation: 49097

Where do I find useful info on using Lucene and Compass?

I am learning Lucene and Compass (Compass is because the code I am working on is old) and I am trying to find something on where to start (and even what to start reading). The Lucene in Action is to old, the code doesn't even run so that is not useful. Nor do I know if I should be reading a lot about Lucene if I am going to use Compass?

And where do I find good texts about Compass? The documentation was pretty technical and expected knowledge in Lucene.

Upvotes: 0

Views: 812

Answers (1)

mailboat
mailboat

Reputation: 1077

Development on Compass was stopped around 2010, since you are learning, you should invest in learning Elastic Search rather than Compass. Elastic Search was created by the same guy who created Compass, since Compass is not a scalable solution the development was stopped & he created Elastic Search.

Elastic Search relies on Lucene at its core. Elastic Search Guide

Lucene In Action - 2nd Edition 2010 is the best & authoritative information you will find on Lucene. Unless you want to have the very latest of whats happening with Lucene, this book is your best bet it covers more than 99% of what you may need to get started.

Also you could consider Apache Solr. With latest 4.0 release Lucene & Solr became a singe project with focus on Cloud & distributed searching.

Check this Solr vs ElasticSearch.

Upvotes: 1

Related Questions