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 2015/02/20 19:16:35 UTC

svn commit: r940867 - in /websites/staging/lucene/trunk/content: ./ core/corenews.html index.html mainnews.html solr/news.html

Author: buildbot
Date: Fri Feb 20 18:16:34 2015
New Revision: 940867

Log:
Staging update by buildbot for lucene

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

Propchange: websites/staging/lucene/trunk/content/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Fri Feb 20 18:16:34 2015
@@ -1 +1 @@
-1660952
+1661173

Modified: websites/staging/lucene/trunk/content/core/corenews.html
==============================================================================
--- websites/staging/lucene/trunk/content/core/corenews.html (original)
+++ websites/staging/lucene/trunk/content/core/corenews.html Fri Feb 20 18:16:34 2015
@@ -211,6 +211,94 @@
       <h1 class="title"></h1>
 
       <div><h1 id="lucenewzxhzdk0tmwzxhzdk1-core-news">Lucene<span style="vertical-align: super; font-size: xx-small">TM</span> Core News</h1>
+<h2 id="20-february-2015-lucenetm-500-core-available">20 February 2015 - Lucene™ 5.0.0 core available</h2>
+<p>The Lucene PMC is pleased to announce the release of Apache Lucene 5.0.</p>
+<p>Apache Lucene is a high-performance, full-featured text search engine
+library written entirely in Java. It is a technology suitable for nearly
+any application that requires full-text search, especially cross-platform.</p>
+<p>This release contains numerous bug fixes, optimizations, and
+improvements, some of which are highlighted below. The release
+is available for immediate download at:
+http://lucene.apache.org/core/mirrors-core-latest-redir.html</p>
+<p>Lucene 5.0 Release Highlights:</p>
+<p>Stronger index safety</p>
+<ul>
+<li>
+<p>All file access now uses Java’s NIO.2 APIs which give Lucene stronger index safety in terms of better error handling and safer commits.</p>
+</li>
+<li>
+<p>Every Lucene segment now stores a unique id per-segment and per-commit to aid in accurate replication of index files.</p>
+</li>
+<li>
+<p>During merging, IndexWriter now always checks the incoming segments for corruption before merging. This can mean, on upgrading to 5.0.0, that merging may uncover long-standing latent corruption in an older 4.x index.</p>
+</li>
+</ul>
+<p>Reduced heap usage</p>
+<ul>
+<li>
+<p>Lucene now supports random-writable and advance-able sparse bitsets (RoaringDocIdSet and SparseFixedBitSet), so the heap required is in proportion to how many bits are set, not how many total documents exist in the index.</p>
+</li>
+<li>
+<p>Heap usage during IndexWriter merging is also much lower with the new Lucene50Codec, since doc values and norms for the segments being merged are no longer fully loaded into heap for all fields; now they are loaded for the one field currently being merged, and then dropped.</p>
+</li>
+<li>
+<p>The default norms format now uses sparse encoding when appropriate, so indices that enable norms for many sparse fields will see a large reduction in required heap at search time.</p>
+</li>
+<li>
+<p>5.0 has a new API to print a tree structure showing a recursive breakdown of which parts are using how much heap.</p>
+</li>
+</ul>
+<p>Other features</p>
+<ul>
+<li>
+<p>FieldCache is gone (moved to a dedicated UninvertingReader in the misc module). This means when you intend to sort on a field, you should index that field using doc values, which is much faster and less heap consuming than FieldCache.</p>
+</li>
+<li>
+<p>Tokenizers and Analyzers no longer require Reader on init.</p>
+</li>
+<li>
+<p>NormsFormat now gets its own dedicated NormsConsumer/Producer</p>
+</li>
+<li>
+<p>SortedSetSortField, used to sort on a multi-valued field, is promoted from sandbox to Lucene's core.</p>
+</li>
+<li>
+<p>PostingsFormat now uses a "pull" API when writing postings, just like doc values. This is powerful because you can do things in your postings format that require making more than one pass through the postings such as iterating over all postings for each term to decide which compression format it should use.</p>
+</li>
+<li>
+<p>New DateRangeField type enables Indexing and searching of date ranges, particularly multi-valued ones.</p>
+</li>
+<li>
+<p>A new ExitableDirectoryReader extends FilterDirectoryReader and enables exiting requests that take too long to enumerate over terms.</p>
+</li>
+<li>
+<p>Suggesters from multi-valued field can now be built as DocumentDictionary now enumerates each value separately in a multi-valued field.</p>
+</li>
+<li>
+<p>ConcurrentMergeScheduler detects whether the index is on SSD or not and does a better job defaulting its settings. This only works on Linux for now; other OS's will continue to use the previous defaults (tuned for spinning disks).</p>
+</li>
+<li>
+<p>Auto-IO-throttling has been added to ConcurrentMergeScheduler, to rate limit IO writes for each merge depending on incoming merge rate.</p>
+</li>
+<li>
+<p>CustomAnalyzer has been added that allows to configure analyzers like you do in Solr's index schema. This class has a builder API to configure Tokenizers, TokenFilters, and CharFilters based on their SPI names and parameters as documented by the corresponding factories.</p>
+</li>
+<li>
+<p>Memory index now supports payloads.</p>
+</li>
+<li>
+<p>Added a filter cache with a usage tracking policy that caches filters based on frequency of use.</p>
+</li>
+<li>
+<p>The default codec has an option to control BEST_SPEED or BEST_COMPRESSION for stored fields.</p>
+</li>
+<li>
+<p>Stored fields are merged more efficiently, especially when upgrading from previous versions or using SortingMergePolicy</p>
+</li>
+</ul>
+<p>NOTE: Lucene 5 no longer supports the Lucene 3.x index format. Opening indexes will result in IndexFormatTooOldException. It is recommended to either reindex all your data, or upgrade the old indexes with the IndexUpgrader tool of latest Lucene 4 version (4.10.x). Those indexes can then be read (see next section) with Lucene 5.</p>
+<p>To read more about the changes, also see: http://blog.mikemccandless.com/2014/11/apache-lucene-500-is-coming.html</p>
+<p>Please read CHANGES.txt (https://lucene.apache.org/core/5_0_0/changes/Changes.html) and MIGRATE.txt for a full list of new features and notes on upgrading.</p>
 <h2 id="29-december-2014-lucene-core-4103-available">29 December 2014 - Lucene Core 4.10.3 Available</h2>
 <p>The Lucene PMC is pleased to announce the release of Apache Lucene 4.10.3</p>
 <p>Apache Lucene is a high-performance, full-featured text search engine
@@ -533,103 +621,6 @@ with the release for a full list of deta
 <li>
 <p>Various bugfixes and optimizations since the 4.6.1 release.</p>
 </li>
-</ul>
-<h2 id="28-january-2014-lucene-core-461-available">28 January 2014 - Lucene Core 4.6.1 Available</h2>
-<p>The Lucene PMC is pleased to announce the release of Apache Lucene 4.6.1</p>
-<p>Apache Lucene is a high-performance, full-featured text search engine
-library written entirely in Java. It is a technology suitable for nearly
-any application that requires full-text search, especially cross-platform.</p>
-<p>This release contains a handful of bug fixes. The release
-is available for immediate download at:
-   <a href="http://lucene.apache.org/core/mirrors-core-latest-redir.html">http://lucene.apache.org/core/mirrors-core-latest-redir.html</a></p>
-<p>See the <a href="/core/4_6_1/changes/Changes.html">CHANGES.txt</a> file included
-with the release for a full list of details.</p>
-<h2 id="24-november-2013-lucene-core-46-available">24 November 2013 - Lucene Core 4.6 Available</h2>
-<p>The Lucene PMC is pleased to announce the release of Apache Lucene 4.6</p>
-<p>Apache Lucene is a high-performance, full-featured text search engine
-library written entirely in Java. It is a technology suitable for nearly
-any application that requires full-text search, especially cross-platform.</p>
-<p>This release contains numerous bug fixes, optimizations, and
-improvements, some of which are highlighted below. The release
-is available for immediate download at:
-  <a href="http://lucene.apache.org/core/mirrors-core-latest-redir.html">http://lucene.apache.org/core/mirrors-core-latest-redir.html</a></p>
-<p>See the <a href="/core/4_6_0/changes/Changes.html">CHANGES.txt</a> file included
-with the release for a full list of details.</p>
-<h3 id="lucene-46-release-highlights">Lucene 4.6 Release Highlights:</h3>
-<ul>
-<li>
-<p>Added support for NumericDocValues field updates (without re-indexing the document) through IndexWriter.updateNumericDocValue(Term, String, Long).</p>
-</li>
-<li>
-<p>New FreeTextSuggester can predict the next word using a simple ngram language model useful for "long tail" suggestions.</p>
-</li>
-<li>
-<p>A new expression module allows for customized ranking with script-like syntax.</p>
-</li>
-<li>
-<p>A new DirectDocValuesFormat can hold all doc values in heap as uncompressed java native arrays.</p>
-</li>
-<li>
-<p>Term.hasFreqs can now determine if a given field indexed per-doc term frequencies.</p>
-</li>
-<li>
-<p>Various bugfixes and optimizations since the 4.5.1 release.</p>
-</li>
-</ul>
-<h2 id="24-october-2013-lucene-core-451-available">24 October 2013 - Lucene Core 4.5.1 Available</h2>
-<p>The Lucene PMC is pleased to announce the release of Apache Lucene 4.5.1</p>
-<p>Apache Lucene is a high-performance, full-featured text search engine
-library written entirely in Java. It is a technology suitable for nearly
-any application that requires full-text search, especially cross-platform.</p>
-<p>This release contains a handful of bug fixes. The release
-is available for immediate download at:
-   <a href="http://lucene.apache.org/core/mirrors-core-latest-redir.html">http://lucene.apache.org/core/mirrors-core-latest-redir.html</a></p>
-<p>See the <a href="/core/4_5_1/changes/Changes.html">CHANGES.txt</a> file included
-with the release for a full list of details.</p>
-<h3 id="lucene-451-release-highlights">Lucene 4.5.1 Release Highlights:</h3>
-<ul>
-<li>Lucene 4.5.1 includes 8 bug fixes.</li>
-</ul>
-<h2 id="5-october-2013-lucene-core-45-available">5 October 2013 - Lucene Core 4.5 Available</h2>
-<p>The Lucene PMC is pleased to announce the release of Apache Lucene 4.5</p>
-<p>Apache Lucene is a high-performance, full-featured text search engine
-library written entirely in Java. It is a technology suitable for nearly
-any application that requires full-text search, especially cross-platform.</p>
-<p>This release contains numerous bug fixes, optimizations, and
-improvements, some of which are highlighted below. The release
-is available for immediate download at:
-  <a href="http://lucene.apache.org/core/mirrors-core-latest-redir.html">http://lucene.apache.org/core/mirrors-core-latest-redir.html</a></p>
-<p>See the <a href="/core/4_5_0/changes/Changes.html">CHANGES.txt</a> file included
-with the release for a full list of details.</p>
-<h3 id="lucene-45-release-highlights">Lucene 4.5 Release Highlights:</h3>
-<ul>
-<li>
-<p>Added support for missing values to DocValues fields through
-  AtomicReader.getDocsWithField.</p>
-</li>
-<li>
-<p>Lucene 4.5 has a new Lucene45Codec with Lucene45DocValues, supporting
-  missing values and with most datastructures residing off-heap.</p>
-</li>
-<li>
-<p>New in-memory DocIdSet implementations which are especially better than
-  FixedBitSet on small sets: WAH8DocIdSet, PFORDeltaDocIdSet and EliasFanoDocIdSet.</p>
-</li>
-<li>
-<p>CachingWrapperFilter now caches filters with WAH8DocIdSet by default, which
-  has the same memory usage as FixedBitSet in the worst case but is smaller and
-  faster on small sets.</p>
-</li>
-<li>
-<p>TokenStreams now set the position increment in end(), so we can handle
-  trailing holes.</p>
-</li>
-<li>
-<p>IndexWriter no longer clones the given IndexWriterConfig.</p>
-</li>
-<li>
-<p>Various bugfixes and optimizations since the 4.4 release.</p>
-</li>
 </ul></div>
       
 

Modified: websites/staging/lucene/trunk/content/index.html
==============================================================================
--- websites/staging/lucene/trunk/content/index.html (original)
+++ websites/staging/lucene/trunk/content/index.html Fri Feb 20 18:16:34 2015
@@ -204,6 +204,151 @@
 <li><a href="./pylucene/index.html">PyLucene</a> is a Python port of the Core project.</li>
 </ul>
 <div><h1 id="lucenewzxhzdk0tmwzxhzdk1-news">Lucene<span style="vertical-align: super; font-size: xx-small">TM</span> News</h1>
+<h2 id="20-february-2015-apache-lucene-500-and-apache-solr-500-available">20 February 2015 -Apache Lucene 5.0.0 and Apache Solr 5.0.0 Available</h2>
+<p>The Lucene PMC is pleased to announce the availability
+of Apache Lucene 5.0.0 and Apache Solr 5.0.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>See the <a href="/core/5_0_0/changes/Changes.html">Lucene CHANGES.txt</a> and
+<a href="/solr/5_0_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>
+<p>Stronger index safety
+* All file access now uses Java’s NIO.2 APIs which give Lucene stronger index safety in terms of better error handling and safer commits.</p>
+<ul>
+<li>
+<p>Every Lucene segment now stores a unique id per-segment and per-commit to aid in accurate replication of index files.</p>
+</li>
+<li>
+<p>During merging, IndexWriter now always checks the incoming segments for corruption before merging. This can mean, on upgrading to 5.0.0, that merging may uncover long-standing latent corruption in an older 4.x index.</p>
+</li>
+</ul>
+<p>Reduced heap usage
+* Lucene now supports random-writable and advance-able sparse bitsets (RoaringDocIdSet and SparseFixedBitSet), so the heap required is in proportion to how many bits are set, not how many total documents exist in the index.</p>
+<ul>
+<li>
+<p>Heap usage during IndexWriter merging is also much lower with the new Lucene50Codec, since doc values and norms for the segments being merged are no longer fully loaded into heap for all fields; now they are loaded for the one field currently being merged, and then dropped.</p>
+</li>
+<li>
+<p>The default norms format now uses sparse encoding when appropriate, so indices that enable norms for many sparse fields will see a large reduction in required heap at search time.</p>
+</li>
+<li>
+<p>5.0 has a new API to print a tree structure showing a recursive breakdown of which parts are using how much heap.</p>
+</li>
+</ul>
+<p>Other features
+* FieldCache is gone (moved to a dedicated UninvertingReader in the misc module). This means when you intend to sort on a field, you should index that field using doc values, which is much faster and less heap consuming than FieldCache.</p>
+<ul>
+<li>
+<p>Tokenizers and Analyzers no longer require Reader on init.</p>
+</li>
+<li>
+<p>NormsFormat now gets its own dedicated NormsConsumer/Producer</p>
+</li>
+<li>
+<p>SortedSetSortField, used to sort on a multi-valued field, is promoted from sandbox to Lucene's core.</p>
+</li>
+<li>
+<p>PostingsFormat now uses a "pull" API when writing postings, just like doc values. This is powerful because you can do things in your postings format that require making more than one pass through the postings such as iterating over all postings for each term to decide which compression format it should use.</p>
+</li>
+<li>
+<p>New DateRangeField type enables Indexing and searching of date ranges, particularly multi-valued ones.</p>
+</li>
+<li>
+<p>A new ExitableDirectoryReader extends FilterDirectoryReader and enables exiting requests that take too long to enumerate over terms.</p>
+</li>
+<li>
+<p>Suggesters from multi-valued field can now be built as DocumentDictionary now enumerates each value separately in a multi-valued field.</p>
+</li>
+<li>
+<p>ConcurrentMergeScheduler detects whether the index is on SSD or not and does a better job defaulting its settings. This only works on Linux for now; other OS's will continue to use the previous defaults (tuned for spinning disks).</p>
+</li>
+<li>
+<p>Auto-IO-throttling has been added to ConcurrentMergeScheduler, to rate limit IO writes for each merge depending on incoming merge rate.</p>
+</li>
+<li>
+<p>CustomAnalyzer has been added that allows to configure analyzers like you do in Solr's index schema. This class has a builder API to configure Tokenizers, TokenFilters, and CharFilters based on their SPI names and parameters as documented by the corresponding factories.</p>
+</li>
+<li>
+<p>Memory index now supports payloads.</p>
+</li>
+<li>
+<p>Added a filter cache with a usage tracking policy that caches filters based on frequency of use.</p>
+</li>
+<li>
+<p>The default codec has an option to control BEST_SPEED or BEST_COMPRESSION for stored fields.</p>
+</li>
+<li>
+<p>Stored fields are merged more efficiently, especially when upgrading from previous versions or using SortingMergePolicy</p>
+</li>
+</ul>
+<h3 id="highlights-of-the-solr-release-include">Highlights of the Solr release include:</h3>
+<ul>
+<li>
+<p>Usability improvements that include improved bin scripts and new and restructured examples.</p>
+</li>
+<li>
+<p>Scripts to support installing and running Solr as a service on Linux.</p>
+</li>
+<li>
+<p>Distributed IDF is now supported and can be enabled via the config. Currently, there are four supported implementations for the same:
+<strong> LocalStatsCache: Local document stats.
+</strong> ExactStatsCache: One time use aggregation
+<strong> ExactSharedStatsCache: Stats shared across requests
+</strong> LRUStatsCache: Stats shared in an LRU cache across requests</p>
+</li>
+<li>
+<p>Solr will no longer ship a war file and instead be a downloadable application.</p>
+</li>
+<li>
+<p>SolrJ now has first class support for Collections API.</p>
+</li>
+<li>
+<p>Implicit registration of replication,get and admin handlers.</p>
+</li>
+<li>
+<p>Config API that supports paramsets for easily configuring solr parameters and configuring fields. This API also supports managing of pre-existing request handlers and editing common solrconfig.xml via overlay.</p>
+</li>
+<li>
+<p>API for managing blobs allows uploading request handler jars and registering them via config API.</p>
+</li>
+<li>
+<p>BALANCESHARDUNIQUE Collection API that allows for even distribution of custom replica properties.</p>
+</li>
+<li>
+<p>There's now an option to not shuffle the nodeSet provided during collection creation.</p>
+</li>
+<li>
+<p>Option to configure bandwidth usage by Replication handler to prevent it from using up all the bandwidth.</p>
+</li>
+<li>
+<p>Splitting of clusterstate to per-collection enables scalability improvement in SolrCloud. This is also the default format for new Collections that would be created going forward.</p>
+</li>
+<li>
+<p>timeAllowed is now used to prematurely terminate requests during query expansion and SolrClient request retry.</p>
+</li>
+<li>
+<p>pivot.facet results can now include nested stats.field results constrained by those pivots.</p>
+</li>
+<li>
+<p>stats.field can be used to generate stats over the results of arbitrary numeric functions.
+  It also allows for requesting for statistics for pivot facets using tags.</p>
+</li>
+<li>
+<p>A new DateRangeField has been added for indexing date ranges, especially multi-valued ones.</p>
+</li>
+<li>
+<p>Spatial fields that used to require units=degrees now take distanceUnits=degrees/kilometers miles instead.</p>
+</li>
+<li>
+<p>MoreLikeThis query parser allows requesting for documents similar to an existing document and also works in SolrCloud mode.</p>
+</li>
+<li>
+<p>Logging improvements:
+<strong> Transaction log replay status is now logged
+</strong> Optional logging of slow requests.</p>
+</li>
+</ul>
 <h2 id="29-december-2014-apache-lucene-4103-and-apache-solr-4103-available">29 December 2014 - Apache Lucene 4.10.3 and Apache Solr 4.10.3 Available</h2>
 <p>The Lucene PMC is pleased to announce the availability
 of Apache Lucene 4.10.3 and Apache Solr 4.10.3.</p>
@@ -249,7 +394,7 @@ and Solr can be downloaded from <a href=
 <p>See the <a href="/core/4_10_0/changes/Changes.html">Lucene CHANGES.txt</a> and
 <a href="/solr/4_10_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>New TermAutomatonQuery using an automaton for proximity queries.
@@ -268,7 +413,7 @@ with the release for a full list of deta
 <p>Fixed edge case in StandardTokenizer that caused extremely slow parsing times with long text which partially matched grammar rules.</p>
 </li>
 </ul>
-<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>This release upgrades Solr Cell's (contrib/extraction) dependency
@@ -309,7 +454,7 @@ and Solr can be downloaded from <a href=
 <p>See the <a href="/core/4_9_0/changes/Changes.html">Lucene CHANGES.txt</a> and
 <a href="/solr/4_9_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 Terms.getMin/Max methods to retrieve the lowest and highest
@@ -352,7 +497,7 @@ with the release for a full list of deta
   a new map.</p>
 </li>
 </ul>
-<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>Numerous optimizations for doc values search-time performance</p>
@@ -399,7 +544,7 @@ 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_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>
 <p>All index files now store end-to-end checksums, which are
@@ -452,7 +597,7 @@ with the release for a full list of deta
   even when the lock is not held.</p>
 </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><code class="inline">&lt;fields&gt;</code> and <code class="inline">&lt;types&gt;</code> tags have been deprecated from schema.xml.
@@ -582,7 +727,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_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>Added support for missing values to DocValues fields through
@@ -608,7 +753,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_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>Custom sharding support, including the ability to shard by field.</p>

Modified: websites/staging/lucene/trunk/content/mainnews.html
==============================================================================
--- websites/staging/lucene/trunk/content/mainnews.html (original)
+++ websites/staging/lucene/trunk/content/mainnews.html Fri Feb 20 18:16:34 2015
@@ -194,6 +194,151 @@
       <h1 class="title"></h1>
 
       <div><h1 id="lucenewzxhzdk0tmwzxhzdk1-news">Lucene<span style="vertical-align: super; font-size: xx-small">TM</span> News</h1>
+<h2 id="20-february-2015-apache-lucene-500-and-apache-solr-500-available">20 February 2015 -Apache Lucene 5.0.0 and Apache Solr 5.0.0 Available</h2>
+<p>The Lucene PMC is pleased to announce the availability
+of Apache Lucene 5.0.0 and Apache Solr 5.0.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>See the <a href="/core/5_0_0/changes/Changes.html">Lucene CHANGES.txt</a> and
+<a href="/solr/5_0_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>
+<p>Stronger index safety
+* All file access now uses Java’s NIO.2 APIs which give Lucene stronger index safety in terms of better error handling and safer commits.</p>
+<ul>
+<li>
+<p>Every Lucene segment now stores a unique id per-segment and per-commit to aid in accurate replication of index files.</p>
+</li>
+<li>
+<p>During merging, IndexWriter now always checks the incoming segments for corruption before merging. This can mean, on upgrading to 5.0.0, that merging may uncover long-standing latent corruption in an older 4.x index.</p>
+</li>
+</ul>
+<p>Reduced heap usage
+* Lucene now supports random-writable and advance-able sparse bitsets (RoaringDocIdSet and SparseFixedBitSet), so the heap required is in proportion to how many bits are set, not how many total documents exist in the index.</p>
+<ul>
+<li>
+<p>Heap usage during IndexWriter merging is also much lower with the new Lucene50Codec, since doc values and norms for the segments being merged are no longer fully loaded into heap for all fields; now they are loaded for the one field currently being merged, and then dropped.</p>
+</li>
+<li>
+<p>The default norms format now uses sparse encoding when appropriate, so indices that enable norms for many sparse fields will see a large reduction in required heap at search time.</p>
+</li>
+<li>
+<p>5.0 has a new API to print a tree structure showing a recursive breakdown of which parts are using how much heap.</p>
+</li>
+</ul>
+<p>Other features
+* FieldCache is gone (moved to a dedicated UninvertingReader in the misc module). This means when you intend to sort on a field, you should index that field using doc values, which is much faster and less heap consuming than FieldCache.</p>
+<ul>
+<li>
+<p>Tokenizers and Analyzers no longer require Reader on init.</p>
+</li>
+<li>
+<p>NormsFormat now gets its own dedicated NormsConsumer/Producer</p>
+</li>
+<li>
+<p>SortedSetSortField, used to sort on a multi-valued field, is promoted from sandbox to Lucene's core.</p>
+</li>
+<li>
+<p>PostingsFormat now uses a "pull" API when writing postings, just like doc values. This is powerful because you can do things in your postings format that require making more than one pass through the postings such as iterating over all postings for each term to decide which compression format it should use.</p>
+</li>
+<li>
+<p>New DateRangeField type enables Indexing and searching of date ranges, particularly multi-valued ones.</p>
+</li>
+<li>
+<p>A new ExitableDirectoryReader extends FilterDirectoryReader and enables exiting requests that take too long to enumerate over terms.</p>
+</li>
+<li>
+<p>Suggesters from multi-valued field can now be built as DocumentDictionary now enumerates each value separately in a multi-valued field.</p>
+</li>
+<li>
+<p>ConcurrentMergeScheduler detects whether the index is on SSD or not and does a better job defaulting its settings. This only works on Linux for now; other OS's will continue to use the previous defaults (tuned for spinning disks).</p>
+</li>
+<li>
+<p>Auto-IO-throttling has been added to ConcurrentMergeScheduler, to rate limit IO writes for each merge depending on incoming merge rate.</p>
+</li>
+<li>
+<p>CustomAnalyzer has been added that allows to configure analyzers like you do in Solr's index schema. This class has a builder API to configure Tokenizers, TokenFilters, and CharFilters based on their SPI names and parameters as documented by the corresponding factories.</p>
+</li>
+<li>
+<p>Memory index now supports payloads.</p>
+</li>
+<li>
+<p>Added a filter cache with a usage tracking policy that caches filters based on frequency of use.</p>
+</li>
+<li>
+<p>The default codec has an option to control BEST_SPEED or BEST_COMPRESSION for stored fields.</p>
+</li>
+<li>
+<p>Stored fields are merged more efficiently, especially when upgrading from previous versions or using SortingMergePolicy</p>
+</li>
+</ul>
+<h3 id="highlights-of-the-solr-release-include">Highlights of the Solr release include:</h3>
+<ul>
+<li>
+<p>Usability improvements that include improved bin scripts and new and restructured examples.</p>
+</li>
+<li>
+<p>Scripts to support installing and running Solr as a service on Linux.</p>
+</li>
+<li>
+<p>Distributed IDF is now supported and can be enabled via the config. Currently, there are four supported implementations for the same:
+<strong> LocalStatsCache: Local document stats.
+</strong> ExactStatsCache: One time use aggregation
+<strong> ExactSharedStatsCache: Stats shared across requests
+</strong> LRUStatsCache: Stats shared in an LRU cache across requests</p>
+</li>
+<li>
+<p>Solr will no longer ship a war file and instead be a downloadable application.</p>
+</li>
+<li>
+<p>SolrJ now has first class support for Collections API.</p>
+</li>
+<li>
+<p>Implicit registration of replication,get and admin handlers.</p>
+</li>
+<li>
+<p>Config API that supports paramsets for easily configuring solr parameters and configuring fields. This API also supports managing of pre-existing request handlers and editing common solrconfig.xml via overlay.</p>
+</li>
+<li>
+<p>API for managing blobs allows uploading request handler jars and registering them via config API.</p>
+</li>
+<li>
+<p>BALANCESHARDUNIQUE Collection API that allows for even distribution of custom replica properties.</p>
+</li>
+<li>
+<p>There's now an option to not shuffle the nodeSet provided during collection creation.</p>
+</li>
+<li>
+<p>Option to configure bandwidth usage by Replication handler to prevent it from using up all the bandwidth.</p>
+</li>
+<li>
+<p>Splitting of clusterstate to per-collection enables scalability improvement in SolrCloud. This is also the default format for new Collections that would be created going forward.</p>
+</li>
+<li>
+<p>timeAllowed is now used to prematurely terminate requests during query expansion and SolrClient request retry.</p>
+</li>
+<li>
+<p>pivot.facet results can now include nested stats.field results constrained by those pivots.</p>
+</li>
+<li>
+<p>stats.field can be used to generate stats over the results of arbitrary numeric functions.
+  It also allows for requesting for statistics for pivot facets using tags.</p>
+</li>
+<li>
+<p>A new DateRangeField has been added for indexing date ranges, especially multi-valued ones.</p>
+</li>
+<li>
+<p>Spatial fields that used to require units=degrees now take distanceUnits=degrees/kilometers miles instead.</p>
+</li>
+<li>
+<p>MoreLikeThis query parser allows requesting for documents similar to an existing document and also works in SolrCloud mode.</p>
+</li>
+<li>
+<p>Logging improvements:
+<strong> Transaction log replay status is now logged
+</strong> Optional logging of slow requests.</p>
+</li>
+</ul>
 <h2 id="29-december-2014-apache-lucene-4103-and-apache-solr-4103-available">29 December 2014 - Apache Lucene 4.10.3 and Apache Solr 4.10.3 Available</h2>
 <p>The Lucene PMC is pleased to announce the availability
 of Apache Lucene 4.10.3 and Apache Solr 4.10.3.</p>
@@ -239,7 +384,7 @@ and Solr can be downloaded from <a href=
 <p>See the <a href="/core/4_10_0/changes/Changes.html">Lucene CHANGES.txt</a> and
 <a href="/solr/4_10_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>New TermAutomatonQuery using an automaton for proximity queries.
@@ -258,7 +403,7 @@ with the release for a full list of deta
 <p>Fixed edge case in StandardTokenizer that caused extremely slow parsing times with long text which partially matched grammar rules.</p>
 </li>
 </ul>
-<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>This release upgrades Solr Cell's (contrib/extraction) dependency
@@ -299,7 +444,7 @@ and Solr can be downloaded from <a href=
 <p>See the <a href="/core/4_9_0/changes/Changes.html">Lucene CHANGES.txt</a> and
 <a href="/solr/4_9_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 Terms.getMin/Max methods to retrieve the lowest and highest
@@ -342,7 +487,7 @@ with the release for a full list of deta
   a new map.</p>
 </li>
 </ul>
-<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>Numerous optimizations for doc values search-time performance</p>
@@ -389,7 +534,7 @@ 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_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>
 <p>All index files now store end-to-end checksums, which are
@@ -442,7 +587,7 @@ with the release for a full list of deta
   even when the lock is not held.</p>
 </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><code class="inline">&lt;fields&gt;</code> and <code class="inline">&lt;types&gt;</code> tags have been deprecated from schema.xml.
@@ -572,7 +717,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_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>Added support for missing values to DocValues fields through
@@ -598,7 +743,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_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>Custom sharding support, including the ability to shard by field.</p>

Modified: websites/staging/lucene/trunk/content/solr/news.html
==============================================================================
--- websites/staging/lucene/trunk/content/solr/news.html (original)
+++ websites/staging/lucene/trunk/content/solr/news.html Fri Feb 20 18:16:34 2015
@@ -181,6 +181,94 @@
       <div class="small-12 columns">
         
           <h1 id="solrwzxhzdk0wzxhzdk2wzxhzdk1-news">Solr<sup>&trade;</sup> News</h1>
+<h2 id="20-february-2015-apache-solrtm-500-and-reference-guide-for-50-available">20 February 2015 - Apache Solr™ 5.0.0 and Reference Guide for 5.0 available</h2>
+<p>Solr is the popular, blazing fast, open source NoSQL search platform
+from the Apache Lucene project. Its major features include powerful
+full-text search, hit highlighting, faceted search, dynamic
+clustering, database integration, rich document (e.g., Word, PDF)
+handling, and geospatial search.  Solr is highly scalable, providing
+fault tolerant distributed search and indexing, and powers the search
+and navigation features of many of the world's largest internet sites.</p>
+<p>Solr 5.0 is available for immediate download at:
+http://lucene.apache.org/solr/mirrors-solr-latest-redir.html</p>
+<p>See the CHANGES.txt file included with the release for a full list of
+details.</p>
+<p>Solr 5.0 Release Highlights:</p>
+<ul>
+<li>
+<p>Usability improvements that include improved bin scripts and new and restructured examples.</p>
+</li>
+<li>
+<p>Scripts to support installing and running Solr as a service on Linux.</p>
+</li>
+<li>
+<p>Distributed IDF is now supported and can be enabled via the config. Currently, there are four supported implementations for the same:</p>
+</li>
+</ul>
+<p><strong> LocalStatsCache: Local document stats.
+</strong> ExactStatsCache: One time use aggregation
+<strong> ExactSharedStatsCache: Stats shared across requests
+</strong> LRUStatsCache: Stats shared in an LRU cache across requests</p>
+<ul>
+<li>
+<p>Solr will no longer ship a war file and instead be a downloadable application.</p>
+</li>
+<li>
+<p>SolrJ now has first class support for Collections API.</p>
+</li>
+<li>
+<p>Implicit registration of replication,get and admin handlers.</p>
+</li>
+<li>
+<p>Config API that supports paramsets for easily configuring solr parameters and configuring fields. This API also supports managing of pre-existing request handlers and editing common solrconfig.xml via overlay.</p>
+</li>
+<li>
+<p>API for managing blobs allows uploading request handler jars and registering them via config API.</p>
+</li>
+<li>
+<p>BALANCESHARDUNIQUE Collection API that allows for even distribution of custom replica properties.</p>
+</li>
+<li>
+<p>There's now an option to not shuffle the nodeSet provided during collection creation.</p>
+</li>
+<li>
+<p>Option to configure bandwidth usage by Replication handler to prevent it from using up all the bandwidth.</p>
+</li>
+<li>
+<p>Splitting of clusterstate to per-collection enables scalability improvement in SolrCloud. This is also the default format for new Collections that would be created going forward.</p>
+</li>
+<li>
+<p>timeAllowed is now used to prematurely terminate requests during query expansion and SolrClient request retry.</p>
+</li>
+<li>
+<p>pivot.facet results can now include nested stats.field results constrained by those pivots.</p>
+</li>
+<li>
+<p>stats.field can be used to generate stats over the results of arbitrary numeric functions.
+  It also allows for requesting for statistics for pivot facets using tags.</p>
+</li>
+<li>
+<p>A new DateRangeField has been added for indexing date ranges, especially multi-valued ones.</p>
+</li>
+<li>
+<p>Spatial fields that used to require units=degrees now take distanceUnits=degrees/kilometers miles instead.</p>
+</li>
+<li>
+<p>MoreLikeThis query parser allows requesting for documents similar to an existing document and also works in SolrCloud mode.</p>
+</li>
+<li>
+<p>Logging improvements:
+<strong> Transaction log replay status is now logged
+</strong> Optional logging of slow requests.</p>
+</li>
+</ul>
+<p>Solr 5.0 also includes many other new features as well as numerous
+optimizations and bugfixes of the corresponding Apache Lucene release.</p>
+<p>Detailed change log:
+http://lucene.apache.org/solr/5_0_0/changes/Changes.html</p>
+<p>Also available is the Solr Reference Guide for Solr 5.0. This 535 page
+PDF serves as the definitive user's manual for Solr 5.0. It can be downloaded
+from the Apache mirror network: https://s.apache.org/Solr-Ref-Guide-PDF</p>
 <h2 id="29-december-2014-apache-solr-4103-available">29 December 2014 - Apache Solr 4.10.3 Available</h2>
 <p>The Lucene PMC is pleased to announce the release of Apache Solr 4.10.3</p>
 <p>Solr is the popular, blazing fast, open source NoSQL search platform
@@ -254,7 +342,7 @@ file included with the release for a ful
 Solr Reference Guide for Solr 4.10.</p>
 <p>The 511 page PDF serves as the definitive user's manual for Solr 4.10. It 
 can be downloaded from the Apache mirror network: 
-<a href="https://www.apache.org/dyn/closer.cgi/lucene/solr/ref-guide/">https://www.apache.org/dyn/closer.cgi/lucene/solr/ref-guide/</a>.</p>
+[https://www.apache.org/dyn/closer.cgi/lucene/solr/ref-guide/][1].</p>
 <h2 id="03-september-2014-apache-solr-4100-available">03 September 2014 - Apache Solr 4.10.0 Available</h2>
 <p>The Lucene PMC is pleased to announce the release of Apache Solr 4.10.0</p>
 <p>Solr is the popular, blazing fast, open source NoSQL search platform
@@ -352,7 +440,7 @@ to update their Solr release first, patc
 of the Solr Reference Guide for Solr 4.9.</p>
 <p>The 408 page PDF serves as the definitive user's manual for Solr 4.9. 
 It can be downloaded from the Apache mirror network:
-<a href="https://www.apache.org/dyn/closer.cgi/lucene/solr/ref-guide/">https://www.apache.org/dyn/closer.cgi/lucene/solr/ref-guide/</a>.</p>
+[https://www.apache.org/dyn/closer.cgi/lucene/solr/ref-guide/][1].</p>
 <h2 id="25-june-2014-apache-solr-490-available">25 June 2014 - Apache Solr 4.9.0 Available</h2>
 <p>The Lucene PMC is pleased to announce the release of Apache Solr 4.9.0</p>
 <p>Solr is the popular, blazing fast, open source NoSQL search platform
@@ -408,7 +496,7 @@ file included with the release for a ful
 of the Solr Reference Guide available for Solr 4.8.</p>
 <p>The 396 page PDF serves as the definitive user's manual for Solr 4.8. 
 It can be downloaded from the Apache mirror network:
-<a href="https://www.apache.org/dyn/closer.cgi/lucene/solr/ref-guide/">https://www.apache.org/dyn/closer.cgi/lucene/solr/ref-guide/</a></p>
+[https://www.apache.org/dyn/closer.cgi/lucene/solr/ref-guide/][1]</p>
 <h2 id="28-april-2014-apache-solr-480-available">28 April 2014 - Apache Solr 4.8.0 Available</h2>
 <p>The Lucene PMC is pleased to announce the release of Apache Solr 4.8.0</p>
 <p>Solr is the popular, blazing fast, open source NoSQL search platform
@@ -534,7 +622,7 @@ This version is now the recommended vers
 <h2 id="5-march-2014-apache-solr-ref-guide-for-47-available">5 March 2014 - Apache Solr Ref Guide for 4.7 Available</h2>
 <p>The Lucene PMC is pleased to announce that there is a new version of the Solr Reference Guide available for Solr 4.7.</p>
 <p>The 395 page PDF serves as the definitive user's manual for Solr 4.7. It can be downloaded from the Apache mirror network:
-<a href="https://www.apache.org/dyn/closer.cgi/lucene/solr/ref-guide/">https://www.apache.org/dyn/closer.cgi/lucene/solr/ref-guide/</a></p>
+[https://www.apache.org/dyn/closer.cgi/lucene/solr/ref-guide/][1]</p>
 <h2 id="26-february-2014-apache-solr-470-available">26 February 2014 - Apache Solr 4.7.0 Available</h2>
 <p>The Lucene PMC is pleased to announce the release of
 Apache Solr 4.7</p>
@@ -588,97 +676,6 @@ file included with the release for a ful
 </ul>
 <p>Solr 4.7 also includes many other new features as well as numerous
  optimizations and bugfixes.</p>
-<h2 id="28-january-2014-apache-solr-461-available">28 January 2014 - Apache Solr 4.6.1 Available</h2>
-<p>The Lucene PMC is pleased to announce the release of Apache Solr 4.6.1</p>
-<p>Solr is the popular, blazing fast, open source NoSQL search platform
-from the Apache Lucene project. Its major features include powerful
-full-text search, hit highlighting, faceted search, dynamic
-clustering, database integration, rich document (e.g., Word, PDF)
-handling, and geospatial search.  Solr is highly scalable, providing
-fault tolerant distributed search and indexing, and powers the search
-and navigation features of many of the world's largest internet sites.</p>
-<p>Solr 4.6.1 contains nearly 30 bug fixes. The release is available for
- immediate download at: <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>See the <a href="/solr/4_6_1/changes/Changes.html">CHANGES.txt</a> file included
-with the release for a full list of details. </p>
-<h2 id="2-december-2013-apache-solr-reference-guide-46">2 December 2013 - Apache Solr Reference Guide 4.6</h2>
-<p>The Lucene PMC is pleased to announce the release of the Apache Solr Reference Guide for Solr 4.6.</p>
-<p>This 347 page PDF serves as the definitive users manual for Solr 4.6.</p>
-<p>The Solr Reference Guide is available for download from the <a href="https://www.apache.org/dyn/closer.cgi/lucene/solr/ref-guide/">Apache mirror network</a>.</p>
-<h2 id="24-november-2013-apache-solr-46-available">24 November 2013 - Apache Solr 4.6 Available</h2>
-<p>The Lucene PMC is pleased to announce the release of
-Apache Solr 4.6</p>
-<p>Solr is the popular, blazing fast, open source NoSQL search platform
-from the Apache Lucene project. Its major features include powerful
-full-text search, hit highlighting, faceted search, dynamic
-clustering, database integration, rich document (e.g., Word, PDF)
-handling, and geospatial search.  Solr is highly scalable, providing
-fault tolerant distributed search and indexing, and powers the search
-and navigation features of many of the world's largest internet sites.</p>
-<p>Solr 4.6 is available for immediate download at: 
-<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>See the <a href="/solr/4_6_0/changes/Changes.html">CHANGES.txt</a>
-file included with the release for a full list of details.</p>
-<h3 id="solr-46-release-highlights">Solr 4.6 Release Highlights:</h3>
-<ul>
-<li>Many improvements and enhancements for shard splitting options</li>
-<li>New AnalyzingInfixLookupFactory to leverage the AnalyzingInfixSuggester</li>
-<li>New CollapsingQParserPlugin for high performance field collapsing on high 
-  cardinality fields</li>
-<li>New SolrJ APIs for collection management</li>
-<li>New DocBasedVersionConstraintsProcessorFactory providing support for user 
-  configured doc-centric versioning rules</li>
-<li>New default index format: Lucene46Codec</li>
-<li>New EnumField type</li>
-</ul>
-<p>Solr 4.6 also includes many other new features as well as numerous
- optimizations and bugfixes.</p>
-<h2 id="24-october-2013-apache-solr-451-available">24 October 2013 - Apache Solr 4.5.1 Available</h2>
-<p>The Lucene PMC is pleased to announce the release of Apache Solr 4.5.1</p>
-<p>Solr is the popular, blazing fast, open source NoSQL search platform
-from the Apache Lucene project. Its major features include powerful
-full-text search, hit highlighting, faceted search, dynamic
-clustering, database integration, rich document (e.g., Word, PDF)
-handling, and geospatial search.  Solr is highly scalable, providing
-fault tolerant distributed search and indexing, and powers the search
-and navigation features of many of the world's largest internet sites.</p>
-<p>Solr 4.5.1 contains a handful of bug fixes, including 2 that are considered
-quite severe. The release is available for immediate download at:
-<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>See the <a href="/solr/4_5_1/changes/Changes.html">CHANGES.txt</a> file included
-with the release for a full list of details. </p>
-<h2 id="5-october-2013-apache-solr-45-and-apache-solr-reference-guide-45-available">5 October 2013 - Apache Solr 4.5 and Apache Solr Reference Guide 4.5 Available</h2>
-<p>The Lucene PMC is pleased to announce the release of
-Apache Solr 4.5 and the Apache Solr Reference Guide 4.5</p>
-<p>Solr is the popular, blazing fast, open source NoSQL search
-platform from the Apache Lucene project. Its major features
-include powerful full-text search, hit highlighting, faceted
-search, dynamic clustering, database integration, rich document
-(e.g., Word, PDF) handling, and geospatial search. Solr is highly
-scalable, providing fault tolerant distributed search and indexing,
-and powers the search and navigation features of many of the
-world's largest internet sites.</p>
-<p>Solr 4.5 is available for immediate download at: 
-<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>See the <a href="/solr/4_5_0/changes/Changes.html">CHANGES.txt</a>
-file included with the release for a full list of details.</p>
-<p>The Solr Reference Guide, a 338 page PDF that serves as the
-definitive users manual for Solr 4.5, is available for download
-from the Apache mirror network:</p>
-<p><a href="https://www.apache.org/dyn/closer.cgi/lucene/solr/ref-guide/">https://www.apache.org/dyn/closer.cgi/lucene/solr/ref-guide/</a></p>
-<h3 id="solr-45-release-highlights">Solr 4.5 Release Highlights:</h3>
-<ul>
-<li>Custom sharding support, including the ability to shard by field.</li>
-<li>DocValue improvements: single valued fields no longer require a
-  default value, allowing dynamicFields to contain doc values, as well
-  as sortMissingFirst and sortMissingLast on docValue fields.</li>
-<li>Ability to store solr.xml in ZooKeeper.</li>
-<li>Multithreaded faceting.</li>
-<li>CloudSolrServer can now route updates directly to the appropriate
- shard leader.</li>
-</ul>
-<p>Solr 4.5 also includes many other new features as well as numerous
- optimizations and bugfixes.</p>
         
       </div>
     </div>