Re: lucene and mongodb

2013-05-15 Thread Rider Carrion Cleger
Thanks you Hendrik, I'm new with Apache Lucene, the problem that arises is like starting with lucene-solr ASAP, in order to move quickly in my project. Do you know a guide or ejemple code about how does lucene-solr works ( storing index in solr as you say) ? Kind regards, Rider On Wed, May

Re: lucene and mongodb

2013-05-15 Thread Simon Willnauer
there is also elasticsearch (elasticsearch.org) build on top of lucene that might feel more natural if you come from mongo simon On Wed, May 15, 2013 at 11:38 AM, Rider Carrion Cleger rider.carr...@gmail.com wrote: Thanks you Hendrik, I'm new with Apache Lucene, the problem that arises is like

Re: lucene and mongodb

2013-05-14 Thread Adrien Grand
Hi, On Tue, May 14, 2013 at 10:35 AM, Rider Carrion Cleger rider.carr...@gmail.com wrote: - Can I store the lucene index in a mongodb database ? I don't know whether it's possible, but even if it was, I would not recommend it. Lucene works best on local filesystems, and even better if the disk

Re: lucene and mongodb

2013-05-14 Thread Rider Carrion Cleger
Thank you Adrien. I did not think about index's scalability but a safe place to store them (like a SGBD relation... or NoSql). So, can I have for sure scalability and safety with a distribution on top of Lucene like Solr ? On Tue, May 14, 2013 at 11:08 AM, Adrien Grand jpou...@gmail.com wrote:

Re: lucene and mongodb

2013-05-14 Thread Adrien Grand
Hi, On Tue, May 14, 2013 at 1:34 PM, Rider Carrion Cleger rider.carr...@gmail.com wrote: So, can I have for sure scalability and safety with a distribution on top of Lucene like Solr ? Yes, Solr can help you shard your index and add replicas, see http://wiki.apache.org/solr/SolrCloud. --

Re: lucene and mongodb

2013-05-14 Thread Jack Krupansky
That was tried with Lucandra/Solandra, which stored the Lucene index in Cassandra, but was less than optimal, so that model was discarded in favor of indexing Cassandra data directly into Solr/Lucene, side-by-side in each Cassandra node, but in native Lucene. The latter approach is now