Chris: I didn't understand how your first solution would work, so I tried it. The terms I extracted from the rewritten query were just the four raw terms, i.e.
field1:query1 field1:query3 field2:query2 field2:query4. So iterating over and deleting them term by term wouldn't preserve the sense of the original query (field1:query1 AND field2:query2) OR (field1:query3 AND field2:query4) and would delete (presumably) more documents than just the documents matching the query. So what am I missing? Thanks Erick On 8/19/07, Chris Hostetter <[EMAIL PROTECTED]> wrote: > > : Is there a way to delete the results from a query or a filter and not > : documents specified by Term. I have seen some explanations here but i do > not > : know how to do it: > : > : > http://www.nabble.com/Batch-deletions-of-Records-from-index-tf615674.html#a1644740 > > the simplest approach that will work in a general case: > 1) build you query object > 2) call rewrite on your query > 3) call extractTerms on the rewritten query > 4) iterate over all those terms and delete. > > if you have Filter it's even easier... > 1) call the bits method on your filter > 2) iterate over each bit and call the delete method that takes a docid. > > > > -Hoss > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [EMAIL PROTECTED] > For additional commands, e-mail: [EMAIL PROTECTED] > >