Deletion of indexes.

2009-01-12 Thread Tushar_Gandhi
in database and don't bother about the indexes which don't have reference in database. Can anyone have solution for this? Thanks, Tushar -- View this message in context: http://www.nabble.com/Deletion-of-indexes.-tp21412630p21412630.html Sent from the Solr - User mailing list archive at Nabble.com.

Re: Deletion of indexes.

2009-01-12 Thread Ryan Grange
I got around this problem by using a trigger on the table I index that records the values of deleted items in a queue table so when my next Solr update rolls around it sends a remove request for that record's ID. Once the Solr deletion is done, I remove that ID from the queue table. Of