user3096754
user3096754

Reputation: 21

Storing a Lucene index in a Cassandra DB

Is there any way to use Apache Lucene and have it store values and retrieve values from a Cassandra cluster?

Upvotes: 0

Views: 885

Answers (2)

naomgabo
naomgabo

Reputation: 151

You should try out https://code.google.com/p/lucene-on-cassandra/ . Takes a different approach to the DataStax approach.

Upvotes: 0

jbellis
jbellis

Reputation: 19377

The hard way: implement a custom index type on top of Lucene and teach Cassandra to query it. There is also a two year old ticket open for this that you could watch.

The expensive way: buy a DataStax Enterprise license.

Upvotes: 1

Related Questions