mirror of https://github.com/apache/lucene.git
Fixes (documentation only) for SOLR-3297 and SOLR-3298
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1307543 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
a62b8828be
commit
b005bcb790
|
@ -65,8 +65,12 @@ Upgrading from Solr 3.6-dev
|
|||
|
||||
* The update request parameter to choose Update Request Processor Chain is
|
||||
renamed from "update.processor" to "update.chain". The old parameter was
|
||||
deprecated but still working since Solr3.2, but is now removed entirely.
|
||||
deprecated but still working since Solr3.2, but is now removed
|
||||
entirely.
|
||||
|
||||
* Two of the SolrServer subclasses in SolrJ were renamed/replaced.
|
||||
CommonsHttpSolrServer is now HttpSolrServer, and
|
||||
StreamingUpdateSolrServer is now ConcurrentUpdateSolrServer.
|
||||
|
||||
Detailed Change List
|
||||
----------------------
|
||||
|
|
|
@ -37,7 +37,8 @@ import java.util.concurrent.atomic.AtomicInteger;
|
|||
import java.util.*;
|
||||
|
||||
/**
|
||||
* LBHttpSolrServer or "LoadBalanced HttpSolrServer" is a load balancing wrapper to CommonsHttpSolrServer. This is useful when you
|
||||
* LBHttpSolrServer or "LoadBalanced HttpSolrServer" is a load balancing wrapper around
|
||||
* {@link org.apache.solr.client.solrj.impl.HttpSolrServer}. This is useful when you
|
||||
* have multiple SolrServers and the requests need to be Load Balanced among them. This should <b>NOT</b> be used for
|
||||
* indexing. Also see the <a href="http://wiki.apache.org/solr/LBHttpSolrServer">wiki</a> page.
|
||||
* <p/>
|
||||
|
|
Loading…
Reference in New Issue