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:
Erick Erickson 2012-03-30 17:17:52 +00:00
parent a62b8828be
commit b005bcb790
2 changed files with 7 additions and 2 deletions

View File

@ -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
----------------------

View File

@ -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/>