Re: Remove data from index

2009-08-21 Thread clico
RequestHandler I think i begin to understand but don't see the way to implement it to resolve my problem. If I lit my CustomRequestHandler after each DIH how can it solve my delta pb as the DIH -- View this message in context: http://www.nabble.com/Remove-data-from-index-tp25063736p25076138.html Sent

Re: Remove data from index

2009-08-21 Thread Noble Paul നോബിള്‍ नोब्ळ्
-- View this message in context: http://www.nabble.com/Remove-data-from-index-tp25063736p25076138.html Sent from the Solr - User mailing list archive at Nabble.com. -- - Noble Paul | Principal Engineer| AOL | http://aol.com

Re: Remove data from index

2009-08-21 Thread clico
I don't understand this point. -- View this message in context: http://www.nabble.com/Remove-data-from-index-tp25063736p25080669.html Sent from the Solr - User mailing list archive at Nabble.com.

RE: Remove data from index

2009-08-21 Thread Fuad Efendi
current timestamp on each document; then delete by query all exprired documents -Fuad -Original Message- From: clico [mailto:cl...@mairie-marseille.fr] Sent: August-21-09 5:58 AM To: solr-user@lucene.apache.org Subject: Re: Remove data from index hossman wrote: : The request I

Remove data from index

2009-08-20 Thread clico
could I do this? A way would be to delete in the index each time a doc is deleted in the database but this is not possible because I canot modify the code of my documents management tool Thanks a lot -- View this message in context: http://www.nabble.com/Remove-data-from-index-tp25063736p25063736

Re: Remove data from index

2009-08-20 Thread clico
that are no longer present in my table_document With Lucene I had a way to do that : open IndexReader, for each lucene document : check in table_document and remove in lucene index if document is no longer present in the table -- View this message in context: http://www.nabble.com/Remove-data-from-index

Re: Remove data from index

2009-08-20 Thread Constantijn Visinescu
is no longer present in the table -- View this message in context: http://www.nabble.com/Remove-data-from-index-tp25063736p25063965.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Remove data from index

2009-08-20 Thread Marc Sturlese
: check in table_document and remove in lucene index if document is no longer present in the table -- View this message in context: http://www.nabble.com/Remove-data-from-index-tp25063736p25063986.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Remove data from index

2009-08-20 Thread Noble Paul നോബിള്‍ नोब्ळ्
Thanks a lot -- View this message in context: http://www.nabble.com/Remove-data-from-index-tp25063736p25063736.html Sent from the Solr - User mailing list archive at Nabble.com. -- - Noble Paul | Principal Engineer| AOL | http

Re: Remove data from index

2009-08-20 Thread Noble Paul നോബിള്‍ नोब्ळ्
in lucene index if document is no longer present in the table -- View this message in context: http://www.nabble.com/Remove-data-from-index-tp25063736p25063965.html Sent from the Solr - User mailing list archive at Nabble.com

Re: Remove data from index

2009-08-20 Thread Chris Hostetter
: The request I would like to write is : : Delete from my solr Index the id that are no longer present in my : table_document : : With Lucene I had a way to do that : : open IndexReader, : for each lucene document : check in table_document and remove in lucene : index if document is no