RE: Deletion of indexes.

2009-01-12 Thread sundar shankar
> Subject: Re: Deletion of indexes. > > 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 de

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 course