views:

237

answers:

4

What is the best way to achieve Lucene real-time indexing?

A: 

Obtain an index reader from the index writer.

Moleski
How's that going to help with real-time indexing?
Mikos
By allowing searches to find documents prior to a commit point. The reader obtained from the writer is continually updated as documents are added.
Moleski
+1  A: 

Try Zoie

http://sna-projects.com/zoie/

jmmata
A: 

The Lucene wiki has some information: http://wiki.apache.org/lucene-java/NearRealtimeSearch

Pascal Dimassimo
A: 

SolrCloud looks promising. It is still very new, but will provide distributed Solr indexing in the NoSQL spirit.

Yuval F