You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by bu...@apache.org on 2014/04/28 17:53:52 UTC

svn commit: r907174 - in /websites/staging/lucene/trunk/content: ./ index.html mainnews.html

Author: buildbot
Date: Mon Apr 28 15:53:51 2014
New Revision: 907174

Log:
Staging update by buildbot for lucene

Modified:
    websites/staging/lucene/trunk/content/   (props changed)
    websites/staging/lucene/trunk/content/index.html
    websites/staging/lucene/trunk/content/mainnews.html

Propchange: websites/staging/lucene/trunk/content/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Mon Apr 28 15:53:51 2014
@@ -1 +1 @@
-1590688
+1590690

Modified: websites/staging/lucene/trunk/content/index.html
==============================================================================
--- websites/staging/lucene/trunk/content/index.html (original)
+++ websites/staging/lucene/trunk/content/index.html Mon Apr 28 15:53:51 2014
@@ -207,13 +207,114 @@
 of Apache Lucene 4.8.0 and Apache Solr 4.8.0.</p>
 <p>Lucene can be downloaded from <a href="http://lucene.apache.org/core/mirrors-core-latest-redir.html">http://lucene.apache.org/core/mirrors-core-latest-redir.html</a>
 and Solr can be downloaded from <a href="http://lucene.apache.org/solr/mirrors-solr-latest-redir.html">http://lucene.apache.org/solr/mirrors-solr-latest-redir.html</a></p>
-<p>Both releases now requires Java 7 or greater (recommended is
+<p>Both releases now require Java 7 or greater (recommended is
 Oracle Java 7 or OpenJDK 7, minimum update 55; earlier versions
 have known JVM bugs affecting Lucene and Solr). In addition,
 both are fully compatible with Java 8.</p>
 <p>See the <a href="/core/4_8_0/changes/Changes.html">Lucene CHANGES.txt</a> and
 <a href="/solr/4_8_0/changes/Changes.html">Solr CHANGES.txt</a> files included
 with the release for a full list of details.</p>
+<h3 id="highlights-of-the-lucene-release-include">Highlights of the Lucene release include:</h3>
+<ul>
+<li>
+<p>All index files now store end-to-end checksums, which are
+  now validated during merging and reading. This ensures that
+  corruptions caused by any bit-flipping hardware problems or bugs
+  in the JVM can be detected earlier.  For full detection be sure
+  to enable all checksums during merging (it's disabled by default).</p>
+</li>
+<li>
+<p>Lucene has a new Rescorer/QueryRescorer API to perform second-pass
+  rescoring or reranking of search results using more expensive scoring
+  functions after first-pass hit collection.</p>
+</li>
+<li>
+<p>AnalyzingInfixSuggester now supports near-real-time autosuggest.</p>
+</li>
+<li>
+<p>Simplified impact-sorted postings (using SortingMergePolicy and
+  EarlyTerminatingCollector) to use Lucene's Sort class
+  to express the sort order.</p>
+</li>
+<li>
+<p>Bulk scoring and normal iterator-based scoring were separated,
+  so some queries can do bulk scoring more effectively.</p>
+</li>
+<li>
+<p>Switched to MurmurHash3 to hash terms during indexing.</p>
+</li>
+<li>
+<p>IndexWriter now supports updating of binary doc value fields.</p>
+</li>
+<li>
+<p>HunspellStemFilter now uses 10 to 100x less RAM. It also loads
+  all known OpenOffice dictionaries without error.</p>
+</li>
+<li>
+<p>Lucene now also fsyncs the directory metadata on commits, if the
+  operating system and file system allow it (Linux, MacOSX are
+  known to work).</p>
+</li>
+<li>
+<p>Lucene now uses Java 7 file system functions under the hood,
+  so index files can be deleted on Windows, even when readers are
+  still open.</p>
+</li>
+<li>
+<p>A serious bug in NativeFSLockFactory was fixed, which could
+  allow multiple IndexWriters to acquire the same lock.  The
+  lock file is no longer deleted from the index directory
+  even when the lock is not held.</p>
+</li>
+</ul>
+<h3 id="highlights-of-the-solr-release-include">Highlights of the Solr release include:</h3>
+<ul>
+<li>
+<p><code class="inline">&lt;fields&gt;</code> and <code class="inline">&lt;types&gt;</code> tags have been deprecated from schema.xml.
+  There is no longer any reason to keep them in the schema file,
+  they may be safely removed. This allows intermixing of <code class="inline">&lt;fieldType&gt;</code>,
+  <code class="inline">&lt;field&gt;</code> and <code class="inline">&lt;copyField&gt;</code> definitions if desired.</p>
+</li>
+<li>
+<p>The new {!complexphrase} query parser supports wildcards, ORs etc.
+  inside Phrase Queries. </p>
+</li>
+<li>
+<p>New Collections API CLUSTERSTATUS action reports the status of
+  collections, shards, and replicas, and also lists collection
+  aliases and cluster properties.</p>
+</li>
+<li>
+<p>Added managed synonym and stopword filter factories, which enable
+  synonym and stopword lists to be dynamically managed via REST API.</p>
+</li>
+<li>
+<p>JSON updates now support nested child documents, enabling {!child}
+  and {!parent} block join queries. </p>
+</li>
+<li>
+<p>Added ExpandComponent to expand results collapsed by the
+  CollapsingQParserPlugin, as well as the parent/child relationship
+  of nested child documents.</p>
+</li>
+<li>
+<p>Long-running Collections API tasks can now be executed
+  asynchronously; the new REQUESTSTATUS action provides status.</p>
+</li>
+<li>
+<p>Added a hl.qparser parameter to allow you to define a query parser
+  for hl.q highlight queries.</p>
+</li>
+<li>
+<p>In Solr single-node mode, cores can now be created using named
+  configsets.</p>
+</li>
+<li>
+<p>New DocExpirationUpdateProcessorFactory supports computing an
+  expiration date for documents from the "TTL" expression, as well as
+  automatically deleting expired documents on a periodic basis. </p>
+</li>
+</ul>
 <h2 id="15-april-2014-apache-lucene-472-and-apache-solr-472-available">15 April 2014 - Apache Lucene 4.7.2 and Apache Solr 4.7.2 Available</h2>
 <p>The Lucene PMC is pleased to announce the availability
 of Apache Lucene 4.7.2 and Apache Solr 4.7.2.</p>
@@ -296,7 +397,7 @@ and Solr can be downloaded from <a href=
 <p>See the <a href="/core/4_5_0/changes/Changes.html">Lucene CHANGES.txt</a> and
 <a href="/solr/4_5_0/changes/Changes.html">Solr CHANGES.txt</a> files included
 with the release for a full list of details.</p>
-<h3 id="highlights-of-the-lucene-release-include">Highlights of the Lucene release include:</h3>
+<h3 id="highlights-of-the-lucene-release-include_1">Highlights of the Lucene release include:</h3>
 <ul>
 <li>
 <p>Added support for missing values to DocValues fields through
@@ -322,7 +423,7 @@ with the release for a full list of deta
 </li>
 </ul>
 <p>Lucene 4.5 also includes numerous optimizations and bugfixes.</p>
-<h3 id="highlights-of-the-solr-release-include">Highlights of the Solr release include:</h3>
+<h3 id="highlights-of-the-solr-release-include_1">Highlights of the Solr release include:</h3>
 <ul>
 <li>
 <p>Custom sharding support, including the ability to shard by field.</p>
@@ -362,7 +463,7 @@ and Solr can be downloaded from <a href=
 <p>See the <a href="/core/4_4_0/changes/Changes.html">Lucene CHANGES.txt</a> and
 <a href="/solr/4_4_0/changes/Changes.html">Solr CHANGES.txt</a> files included
 with the release for a full list of details.</p>
-<h3 id="highlights-of-the-lucene-release-include_1">Highlights of the Lucene release include:</h3>
+<h3 id="highlights-of-the-lucene-release-include_2">Highlights of the Lucene release include:</h3>
 <ul>
 <li>
 <p>New Replicator module: replicate index revisions between server and
@@ -432,7 +533,7 @@ with the release for a full list of deta
 </li>
 </ul>
 <p>Lucene 4.4 also includes numerous optimizations and bugfixes.</p>
-<h3 id="highlights-of-the-solr-release-include_1">Highlights of the Solr release include:</h3>
+<h3 id="highlights-of-the-solr-release-include_2">Highlights of the Solr release include:</h3>
 <ul>
 <li>
 <p>Solr indexes and transaction logs may stored in HDFS with full read/write
@@ -510,12 +611,12 @@ and Solr can be downloaded from <a href=
 <p>See the <a href="/core/4_3_1/changes/Changes.html">Lucene CHANGES.txt</a> and
 <a href="/solr/4_3_1/changes/Changes.html">Solr CHANGES.txt</a> files included
 with the release for a full list of details.</p>
-<h3 id="highlights-of-the-lucene-release-include_2">Highlights of the Lucene release include:</h3>
+<h3 id="highlights-of-the-lucene-release-include_3">Highlights of the Lucene release include:</h3>
 <ul>
 <li>Lucene 4.3.1 includes 12 bug fixes and 1 optimization, including fixes
 for a serious bug that can cause deadlock.</li>
 </ul>
-<h3 id="highlights-of-the-solr-release-include_2">Highlights of the Solr release include:</h3>
+<h3 id="highlights-of-the-solr-release-include_3">Highlights of the Solr release include:</h3>
 <ul>
 <li>
 <p>Solr 4.3.1 includes 24 bug fixes. The list includes a lot of SolrCloud
@@ -533,7 +634,7 @@ and Solr can be downloaded from <a href=
 <p>See the <a href="/core/4_3_0/changes/Changes.html">Lucene CHANGES.txt</a> and
 <a href="/solr/4_3_0/changes/Changes.html">Solr CHANGES.txt</a> files included
 with the release for a full list of details.</p>
-<h3 id="highlights-of-the-lucene-release-include_3">Highlights of the Lucene release include:</h3>
+<h3 id="highlights-of-the-lucene-release-include_4">Highlights of the Lucene release include:</h3>
 <ul>
 <li>
 <p>Significant performance improvements for minShouldMatch BooleanQuery due to
@@ -580,7 +681,7 @@ with the release for a full list of deta
 <p>Various bugfixes and optimizations since the 4.2.1 release.</p>
 </li>
 </ul>
-<h3 id="highlights-of-the-solr-release-include_3">Highlights of the Solr release include:</h3>
+<h3 id="highlights-of-the-solr-release-include_4">Highlights of the Solr release include:</h3>
 <ul>
 <li>
 <p>Tired of maintaining core information in solr.xml? Now you can configure
@@ -628,12 +729,12 @@ and Solr can be downloaded from <a href=
 <p>See the <a href="/core/4_2_1/changes/Changes.html">Lucene CHANGES.txt</a> and
 <a href="/solr/4_2_1/changes/Changes.html">Solr CHANGES.txt</a> files included
 with the release for a full list of details.</p>
-<h3 id="highlights-of-the-lucene-release-include_4">Highlights of the Lucene release include:</h3>
+<h3 id="highlights-of-the-lucene-release-include_5">Highlights of the Lucene release include:</h3>
 <ul>
 <li>Lucene 4.2.1 includes 9 bug fixes and 3 optimizations, including a fix 
 for a serious bug that could result in the loss of an index.</li>
 </ul>
-<h3 id="highlights-of-the-solr-release-include_4">Highlights of the Solr release include:</h3>
+<h3 id="highlights-of-the-solr-release-include_5">Highlights of the Solr release include:</h3>
 <ul>
 <li>
 <p>Solr 4.2.1 includes 38 bug fixes and 2 optimizations. The list includes 
@@ -653,7 +754,7 @@ and Solr can be downloaded from <a href=
 <p>See the <a href="/core/4_2_0/changes/Changes.html">Lucene CHANGES.txt</a> and
 <a href="/solr/4_2_0/changes/Changes.html">Solr CHANGES.txt</a> files included
 with the release for a full list of details.</p>
-<h3 id="highlights-of-the-lucene-release-include_5">Highlights of the Lucene release include:</h3>
+<h3 id="highlights-of-the-lucene-release-include_6">Highlights of the Lucene release include:</h3>
 <ul>
 <li>
 <p>Lucene 4.2 has a new default codec (Lucene42Codec) with a more
@@ -702,7 +803,7 @@ with the release for a full list of deta
 <p>Various bugfixes and optimizations since the 4.1 release.</p>
 </li>
 </ul>
-<h3 id="highlights-of-the-solr-release-include_5">Highlights of the Solr release include:</h3>
+<h3 id="highlights-of-the-solr-release-include_6">Highlights of the Solr release include:</h3>
 <ul>
 <li>
 <p>A read side REST API for the schema. Always wanted to introspect the schema over http?
@@ -749,7 +850,7 @@ and Solr can be downloaded from <a href=
 <p>See the <a href="/core/4_1_0/changes/Changes.html">Lucene CHANGES.txt</a> and
 <a href="/solr/4_1_0/changes/Changes.html">Solr CHANGES.txt</a> files included
 with the release for a full list of details.</p>
-<h3 id="highlights-of-the-lucene-release-include_6">Highlights of the Lucene release include:</h3>
+<h3 id="highlights-of-the-lucene-release-include_7">Highlights of the Lucene release include:</h3>
 <ul>
 <li>
 <p>Lucene 4.1 has a new default codec (Lucene41Codec) based on the
@@ -804,7 +905,7 @@ with the release for a full list of deta
 <p>Several bugfixes and optimizations since the 4.0 release.</p>
 </li>
 </ul>
-<h3 id="highlights-of-the-solr-release-include_6">Highlights of the Solr release include:</h3>
+<h3 id="highlights-of-the-solr-release-include_7">Highlights of the Solr release include:</h3>
 <h4 id="solrcloud-enhancements-see-httpwikiapacheorgsolrsolrcloud">SolrCloud enhancements (see <a href="http://wiki.apache.org/solr/SolrCloud">http://wiki.apache.org/solr/SolrCloud</a>):</h4>
 <ul>
 <li>Simple multi-tenancy through enhanced document routing:<ul>

Modified: websites/staging/lucene/trunk/content/mainnews.html
==============================================================================
--- websites/staging/lucene/trunk/content/mainnews.html (original)
+++ websites/staging/lucene/trunk/content/mainnews.html Mon Apr 28 15:53:51 2014
@@ -205,6 +205,107 @@ both are fully compatible with Java 8.</
 <p>See the <a href="/core/4_8_0/changes/Changes.html">Lucene CHANGES.txt</a> and
 <a href="/solr/4_8_0/changes/Changes.html">Solr CHANGES.txt</a> files included
 with the release for a full list of details.</p>
+<h3 id="highlights-of-the-lucene-release-include">Highlights of the Lucene release include:</h3>
+<ul>
+<li>
+<p>All index files now store end-to-end checksums, which are
+  now validated during merging and reading. This ensures that
+  corruptions caused by any bit-flipping hardware problems or bugs
+  in the JVM can be detected earlier.  For full detection be sure
+  to enable all checksums during merging (it's disabled by default).</p>
+</li>
+<li>
+<p>Lucene has a new Rescorer/QueryRescorer API to perform second-pass
+  rescoring or reranking of search results using more expensive scoring
+  functions after first-pass hit collection.</p>
+</li>
+<li>
+<p>AnalyzingInfixSuggester now supports near-real-time autosuggest.</p>
+</li>
+<li>
+<p>Simplified impact-sorted postings (using SortingMergePolicy and
+  EarlyTerminatingCollector) to use Lucene's Sort class
+  to express the sort order.</p>
+</li>
+<li>
+<p>Bulk scoring and normal iterator-based scoring were separated,
+  so some queries can do bulk scoring more effectively.</p>
+</li>
+<li>
+<p>Switched to MurmurHash3 to hash terms during indexing.</p>
+</li>
+<li>
+<p>IndexWriter now supports updating of binary doc value fields.</p>
+</li>
+<li>
+<p>HunspellStemFilter now uses 10 to 100x less RAM. It also loads
+  all known OpenOffice dictionaries without error.</p>
+</li>
+<li>
+<p>Lucene now also fsyncs the directory metadata on commits, if the
+  operating system and file system allow it (Linux, MacOSX are
+  known to work).</p>
+</li>
+<li>
+<p>Lucene now uses Java 7 file system functions under the hood,
+  so index files can be deleted on Windows, even when readers are
+  still open.</p>
+</li>
+<li>
+<p>A serious bug in NativeFSLockFactory was fixed, which could
+  allow multiple IndexWriters to acquire the same lock.  The
+  lock file is no longer deleted from the index directory
+  even when the lock is not held.</p>
+</li>
+</ul>
+<h3 id="highlights-of-the-solr-release-include">Highlights of the Solr release include:</h3>
+<ul>
+<li>
+<p><code class="inline">&lt;fields&gt;</code> and <code class="inline">&lt;types&gt;</code> tags have been deprecated from schema.xml.
+  There is no longer any reason to keep them in the schema file,
+  they may be safely removed. This allows intermixing of <code class="inline">&lt;fieldType&gt;</code>,
+  <code class="inline">&lt;field&gt;</code> and <code class="inline">&lt;copyField&gt;</code> definitions if desired.</p>
+</li>
+<li>
+<p>The new {!complexphrase} query parser supports wildcards, ORs etc.
+  inside Phrase Queries. </p>
+</li>
+<li>
+<p>New Collections API CLUSTERSTATUS action reports the status of
+  collections, shards, and replicas, and also lists collection
+  aliases and cluster properties.</p>
+</li>
+<li>
+<p>Added managed synonym and stopword filter factories, which enable
+  synonym and stopword lists to be dynamically managed via REST API.</p>
+</li>
+<li>
+<p>JSON updates now support nested child documents, enabling {!child}
+  and {!parent} block join queries. </p>
+</li>
+<li>
+<p>Added ExpandComponent to expand results collapsed by the
+  CollapsingQParserPlugin, as well as the parent/child relationship
+  of nested child documents.</p>
+</li>
+<li>
+<p>Long-running Collections API tasks can now be executed
+  asynchronously; the new REQUESTSTATUS action provides status.</p>
+</li>
+<li>
+<p>Added a hl.qparser parameter to allow you to define a query parser
+  for hl.q highlight queries.</p>
+</li>
+<li>
+<p>In Solr single-node mode, cores can now be created using named
+  configsets.</p>
+</li>
+<li>
+<p>New DocExpirationUpdateProcessorFactory supports computing an
+  expiration date for documents from the "TTL" expression, as well as
+  automatically deleting expired documents on a periodic basis. </p>
+</li>
+</ul>
 <h2 id="15-april-2014-apache-lucene-472-and-apache-solr-472-available">15 April 2014 - Apache Lucene 4.7.2 and Apache Solr 4.7.2 Available</h2>
 <p>The Lucene PMC is pleased to announce the availability
 of Apache Lucene 4.7.2 and Apache Solr 4.7.2.</p>
@@ -287,7 +388,7 @@ and Solr can be downloaded from <a href=
 <p>See the <a href="/core/4_5_0/changes/Changes.html">Lucene CHANGES.txt</a> and
 <a href="/solr/4_5_0/changes/Changes.html">Solr CHANGES.txt</a> files included
 with the release for a full list of details.</p>
-<h3 id="highlights-of-the-lucene-release-include">Highlights of the Lucene release include:</h3>
+<h3 id="highlights-of-the-lucene-release-include_1">Highlights of the Lucene release include:</h3>
 <ul>
 <li>
 <p>Added support for missing values to DocValues fields through
@@ -313,7 +414,7 @@ with the release for a full list of deta
 </li>
 </ul>
 <p>Lucene 4.5 also includes numerous optimizations and bugfixes.</p>
-<h3 id="highlights-of-the-solr-release-include">Highlights of the Solr release include:</h3>
+<h3 id="highlights-of-the-solr-release-include_1">Highlights of the Solr release include:</h3>
 <ul>
 <li>
 <p>Custom sharding support, including the ability to shard by field.</p>
@@ -353,7 +454,7 @@ and Solr can be downloaded from <a href=
 <p>See the <a href="/core/4_4_0/changes/Changes.html">Lucene CHANGES.txt</a> and
 <a href="/solr/4_4_0/changes/Changes.html">Solr CHANGES.txt</a> files included
 with the release for a full list of details.</p>
-<h3 id="highlights-of-the-lucene-release-include_1">Highlights of the Lucene release include:</h3>
+<h3 id="highlights-of-the-lucene-release-include_2">Highlights of the Lucene release include:</h3>
 <ul>
 <li>
 <p>New Replicator module: replicate index revisions between server and
@@ -423,7 +524,7 @@ with the release for a full list of deta
 </li>
 </ul>
 <p>Lucene 4.4 also includes numerous optimizations and bugfixes.</p>
-<h3 id="highlights-of-the-solr-release-include_1">Highlights of the Solr release include:</h3>
+<h3 id="highlights-of-the-solr-release-include_2">Highlights of the Solr release include:</h3>
 <ul>
 <li>
 <p>Solr indexes and transaction logs may stored in HDFS with full read/write
@@ -501,12 +602,12 @@ and Solr can be downloaded from <a href=
 <p>See the <a href="/core/4_3_1/changes/Changes.html">Lucene CHANGES.txt</a> and
 <a href="/solr/4_3_1/changes/Changes.html">Solr CHANGES.txt</a> files included
 with the release for a full list of details.</p>
-<h3 id="highlights-of-the-lucene-release-include_2">Highlights of the Lucene release include:</h3>
+<h3 id="highlights-of-the-lucene-release-include_3">Highlights of the Lucene release include:</h3>
 <ul>
 <li>Lucene 4.3.1 includes 12 bug fixes and 1 optimization, including fixes
 for a serious bug that can cause deadlock.</li>
 </ul>
-<h3 id="highlights-of-the-solr-release-include_2">Highlights of the Solr release include:</h3>
+<h3 id="highlights-of-the-solr-release-include_3">Highlights of the Solr release include:</h3>
 <ul>
 <li>
 <p>Solr 4.3.1 includes 24 bug fixes. The list includes a lot of SolrCloud
@@ -524,7 +625,7 @@ and Solr can be downloaded from <a href=
 <p>See the <a href="/core/4_3_0/changes/Changes.html">Lucene CHANGES.txt</a> and
 <a href="/solr/4_3_0/changes/Changes.html">Solr CHANGES.txt</a> files included
 with the release for a full list of details.</p>
-<h3 id="highlights-of-the-lucene-release-include_3">Highlights of the Lucene release include:</h3>
+<h3 id="highlights-of-the-lucene-release-include_4">Highlights of the Lucene release include:</h3>
 <ul>
 <li>
 <p>Significant performance improvements for minShouldMatch BooleanQuery due to
@@ -571,7 +672,7 @@ with the release for a full list of deta
 <p>Various bugfixes and optimizations since the 4.2.1 release.</p>
 </li>
 </ul>
-<h3 id="highlights-of-the-solr-release-include_3">Highlights of the Solr release include:</h3>
+<h3 id="highlights-of-the-solr-release-include_4">Highlights of the Solr release include:</h3>
 <ul>
 <li>
 <p>Tired of maintaining core information in solr.xml? Now you can configure
@@ -619,12 +720,12 @@ and Solr can be downloaded from <a href=
 <p>See the <a href="/core/4_2_1/changes/Changes.html">Lucene CHANGES.txt</a> and
 <a href="/solr/4_2_1/changes/Changes.html">Solr CHANGES.txt</a> files included
 with the release for a full list of details.</p>
-<h3 id="highlights-of-the-lucene-release-include_4">Highlights of the Lucene release include:</h3>
+<h3 id="highlights-of-the-lucene-release-include_5">Highlights of the Lucene release include:</h3>
 <ul>
 <li>Lucene 4.2.1 includes 9 bug fixes and 3 optimizations, including a fix 
 for a serious bug that could result in the loss of an index.</li>
 </ul>
-<h3 id="highlights-of-the-solr-release-include_4">Highlights of the Solr release include:</h3>
+<h3 id="highlights-of-the-solr-release-include_5">Highlights of the Solr release include:</h3>
 <ul>
 <li>
 <p>Solr 4.2.1 includes 38 bug fixes and 2 optimizations. The list includes 
@@ -644,7 +745,7 @@ and Solr can be downloaded from <a href=
 <p>See the <a href="/core/4_2_0/changes/Changes.html">Lucene CHANGES.txt</a> and
 <a href="/solr/4_2_0/changes/Changes.html">Solr CHANGES.txt</a> files included
 with the release for a full list of details.</p>
-<h3 id="highlights-of-the-lucene-release-include_5">Highlights of the Lucene release include:</h3>
+<h3 id="highlights-of-the-lucene-release-include_6">Highlights of the Lucene release include:</h3>
 <ul>
 <li>
 <p>Lucene 4.2 has a new default codec (Lucene42Codec) with a more
@@ -693,7 +794,7 @@ with the release for a full list of deta
 <p>Various bugfixes and optimizations since the 4.1 release.</p>
 </li>
 </ul>
-<h3 id="highlights-of-the-solr-release-include_5">Highlights of the Solr release include:</h3>
+<h3 id="highlights-of-the-solr-release-include_6">Highlights of the Solr release include:</h3>
 <ul>
 <li>
 <p>A read side REST API for the schema. Always wanted to introspect the schema over http?
@@ -740,7 +841,7 @@ and Solr can be downloaded from <a href=
 <p>See the <a href="/core/4_1_0/changes/Changes.html">Lucene CHANGES.txt</a> and
 <a href="/solr/4_1_0/changes/Changes.html">Solr CHANGES.txt</a> files included
 with the release for a full list of details.</p>
-<h3 id="highlights-of-the-lucene-release-include_6">Highlights of the Lucene release include:</h3>
+<h3 id="highlights-of-the-lucene-release-include_7">Highlights of the Lucene release include:</h3>
 <ul>
 <li>
 <p>Lucene 4.1 has a new default codec (Lucene41Codec) based on the
@@ -795,7 +896,7 @@ with the release for a full list of deta
 <p>Several bugfixes and optimizations since the 4.0 release.</p>
 </li>
 </ul>
-<h3 id="highlights-of-the-solr-release-include_6">Highlights of the Solr release include:</h3>
+<h3 id="highlights-of-the-solr-release-include_7">Highlights of the Solr release include:</h3>
 <h4 id="solrcloud-enhancements-see-httpwikiapacheorgsolrsolrcloud">SolrCloud enhancements (see <a href="http://wiki.apache.org/solr/SolrCloud">http://wiki.apache.org/solr/SolrCloud</a>):</h4>
 <ul>
 <li>Simple multi-tenancy through enhanced document routing:<ul>