: 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]