Re: Any realtime indexing plugin available for SOLR

2010-05-27 Thread Antonio Lobato
Funny enough, I've been looking for my own solution too. The Zoie plugin does not work on multi-core setups, so that's bust for me. Once you commit something to index, you need to "warm" a new searcher (load all the data from disk into memory/cache) like Erik says. On a smaller index, this is

Re: Any realtime indexing plugin available for SOLR

2010-05-27 Thread Erik Hatcher
On May 26, 2010, at 11:29 AM, Dennis Gearon wrote: I thought that if entries were COMMITed to the index, they were immediately visible? Is this true, or am I smoking Java coffee beans? They're visible after a commit AND warming are complete, yes. But there could be a potentially substa

RE: Any realtime indexing plugin available for SOLR

2010-05-26 Thread stefan.maric
If it is your app that is updating data in the DB, then you could have it update Solr at the same time Regards Stefan Maric -Original Message- From: bbarani [mailto:bbar...@gmail.com] Sent: Wednesday, May 26, 2010 10:39 AM To: solr-user@lucene.apache.org Subject: Any realtime indexing

Re: Any realtime indexing plugin available for SOLR

2010-05-26 Thread Dennis Gearon
w.yert.com/film.php --- On Wed, 5/26/10, Marco Martinez wrote: > From: Marco Martinez > Subject: Re: Any realtime indexing plugin available for SOLR > To: solr-user@lucene.apache.org > Date: Wednesday, May 26, 2010, 7:51 AM > Maybe this will help you > > http://snaprojects.

RE: Any realtime indexing plugin available for SOLR

2010-05-26 Thread Nagelberg, Kallin
I'm afraid nothing is completely 'real-time'. Even when doing your inserts on the database there is time taken for those operations to complete. Right now I have my solr server autocommiting every 30 seconds, which is 'real-time' enough for me. You need to figure out what your threshold is, and

Re: Any realtime indexing plugin available for SOLR

2010-05-26 Thread Marco Martinez
Maybe this will help you http://snaprojects.jira.com/wiki/display/ZOIE/Zoie+Solr+Plugin Marco Martínez Bautista http://www.paradigmatecnologico.com Avenida de Europa, 26. Ática 5. 3ª Planta 28224 Pozuelo de Alarcón Tel.: 91 352 59 42 2010/5/26 bbarani > > Hi, > > Sorry if I am asking this que