: Can this be done on the same request? Because I am sending them on diferent
: requests... wich suck... already dividing inserts and deletes in 2 requests is
: bad enough.

if you use persistent HTTP connections (ie: keep-alive) the network 
overhead goes away, and there should be negligable difference between one 
request per delete and 'batched' dleetes (let alone 2 requests: one for 
inserts and 1 for deletes).

incidently: you aren't deleting docs just so you can add new versions of 
them are you?  assuming you have a uniqueKey field you can just read add 
the docs and Solr will take care of deleting the old version.



-Hoss

Reply via email to