On 3/5/2014 2:58 PM, Toby Lazar wrote:
OK, I was using HttpSolrServer since I haven't yet migrated to CloudSolrServer. I added the line:solrServer.setRequestWriter(new BinaryRequestWriter()) after creating the server object and now see the difference through wireshark. Is it fair to assume that this usage is multi-thread safe?
Yes, SolrServer is entirely threadsafe. You can have one SolrServer object (for each Solr core) and use it throughout your entire application.
Thanks, Shawn