On 11-Oct-07, at 2:47 PM, BrendanD wrote:
Hi,
Is it possible to send a command to have Solr flush the deletesPending
documents without doing a commit? I know there's a setting in
solrconfig.xml
for setting a threshold value, but I'd like to somehow kick it off on
demand. We need this to be able to remove merchants from our product
listings if their accounts run out of funds.
<commit/> means "make my edits visible now". Can you explain why
this isn't exactly what you need? Are there performance problems?
The flushing deletes parameter is a performance knob only: it doesn't
actually make the deletes visible until <commit/>
-Mike