You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by rm...@apache.org on 2014/06/25 12:09:18 UTC

svn commit: r1605315 - in /lucene/cms/trunk: content/ content/core/ content/solr/ templates/

Author: rmuir
Date: Wed Jun 25 10:09:17 2014
New Revision: 1605315

URL: http://svn.apache.org/r1605315
Log:
4.9.0 release

Modified:
    lucene/cms/trunk/content/.htaccess
    lucene/cms/trunk/content/core/corenews.mdtext
    lucene/cms/trunk/content/core/doap.rdf
    lucene/cms/trunk/content/core/documentation.mdtext
    lucene/cms/trunk/content/core/quickstart.mdtext
    lucene/cms/trunk/content/core/systemreqs.mdtext
    lucene/cms/trunk/content/mainnews.mdtext
    lucene/cms/trunk/content/solr/doap.rdf
    lucene/cms/trunk/content/solr/documentation.mdtext
    lucene/cms/trunk/content/solr/solrnews.mdtext
    lucene/cms/trunk/content/solr/tutorial.mdtext
    lucene/cms/trunk/templates/core-sidebar.html
    lucene/cms/trunk/templates/corenav.mdtext
    lucene/cms/trunk/templates/mirrors-core-latest-redir.html
    lucene/cms/trunk/templates/mirrors-solr-latest-redir.html
    lucene/cms/trunk/templates/sidenav.mdtext
    lucene/cms/trunk/templates/solr-sidebar.html

Modified: lucene/cms/trunk/content/.htaccess
URL: http://svn.apache.org/viewvc/lucene/cms/trunk/content/.htaccess?rev=1605315&r1=1605314&r2=1605315&view=diff
==============================================================================
--- lucene/cms/trunk/content/.htaccess (original)
+++ lucene/cms/trunk/content/.htaccess Wed Jun 25 10:09:17 2014
@@ -22,9 +22,9 @@ RedirectMatch temp /solr/api$ /solr/api/
 # Other pages can always be redirected to the "most current" released javadocs
 # using "temp" instead of permanent so crawlers know that they
 # might change again in the future
-RedirectMatch temp /core/api/(.*) /core/4_8_1/$1
-RedirectMatch temp /solr/api/org/(.*) /solr/4_8_1/solr-core/org/$1
-RedirectMatch temp /solr/api/(.*) /solr/4_8_1/$1
+RedirectMatch temp /core/api/(.*) /core/4_9_0/$1
+RedirectMatch temp /solr/api/org/(.*) /solr/4_9_0/solr-core/org/$1
+RedirectMatch temp /solr/api/(.*) /solr/4_9_0/$1
 
 # we no longer have a TLP mail.html page use 'core' for now
 RedirectMatch Permanent /mail.html /core/discussion.html

Modified: lucene/cms/trunk/content/core/corenews.mdtext
URL: http://svn.apache.org/viewvc/lucene/cms/trunk/content/core/corenews.mdtext?rev=1605315&r1=1605314&r2=1605315&view=diff
==============================================================================
--- lucene/cms/trunk/content/core/corenews.mdtext (original)
+++ lucene/cms/trunk/content/core/corenews.mdtext Wed Jun 25 10:09:17 2014
@@ -1,5 +1,52 @@
 # Lucene<span style="vertical-align: super; font-size: xx-small">TM</span> Core News
 
+## 25 June 2014 - Lucene Core 4.9.0 Available
+
+The Lucene PMC is pleased to announce the release of Apache Lucene 4.9.0
+
+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.
+
+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
+
+See the [CHANGES.txt](/core/4_9_0/changes/Changes.html) file included with the release for a full list of
+details.
+
+Lucene 4.9.0 Release Highlights:
+
+* New Terms.getMin/Max methods to retrieve the lowest and highest
+  terms per field.
+
+* New IDVersionPostingsFormat, optimized for ID lookups that associate
+  a monotonically increasing version per ID.
+
+* Atomic update of a set of doc values fields.
+
+* Numerous optimizations for doc values search-time performance.
+
+* New (default) Lucene49NormsFormat to better compress certain cases
+  such as very short fields.
+
+* New SORTED_NUMERIC docvalues type for efficient processing of
+  multi-valued numeric fields.
+
+* Indexer passes previous token stream for easier reuse.
+
+* MoreLikeThis accepts multiple values per field.
+
+* All classes that estimate their RAM usage now implement a new
+  Accountable interface.
+
+* Lucene files are now written by (File)OutputStream on all platforms,
+  completely disallowing seeking with simplified IO APIs.
+
+* Improve the confusing error message when MMapDirectory cannot create
+  a new map.
+
 ## 20 May 2014 - Lucene Core 4.8.1 Available
 
 The Lucene PMC is pleased to announce the release of Apache Lucene 4.8.1

Modified: lucene/cms/trunk/content/core/doap.rdf
URL: http://svn.apache.org/viewvc/lucene/cms/trunk/content/core/doap.rdf?rev=1605315&r1=1605314&r2=1605315&view=diff
==============================================================================
--- lucene/cms/trunk/content/core/doap.rdf (original)
+++ lucene/cms/trunk/content/core/doap.rdf Wed Jun 25 10:09:17 2014
@@ -38,6 +38,14 @@
     <wiki rdf:resource="http://wiki.apache.org/lucene-java/"/>
     <release>
       <Version>
+        <branch>lucene_solr_4_9</branch> 
+        <name>lucene-4.9.0</name>
+        <created>2014-06-25</created>
+        <revision>4.9.0</revision>
+      </Version>
+    </release>
+    <release>
+      <Version>
         <branch>lucene_solr_4_8</branch> 
         <name>lucene-4.8.1</name>
         <created>2014-05-20</created>

Modified: lucene/cms/trunk/content/core/documentation.mdtext
URL: http://svn.apache.org/viewvc/lucene/cms/trunk/content/core/documentation.mdtext?rev=1605315&r1=1605314&r2=1605315&view=diff
==============================================================================
--- lucene/cms/trunk/content/core/documentation.mdtext (original)
+++ lucene/cms/trunk/content/core/documentation.mdtext Wed Jun 25 10:09:17 2014
@@ -1,5 +1,4 @@
 # Lucene<span style="vertical-align: super; font-size: xx-small">TM</span> Release Docs
 
 ## Java Docs
-- [4.8.1](./4_8_1/index.html) (requires minimum Java 7)
-- [4.7.2](./4_7_2/index.html) (last Java 6 compatible version)
+- [4.9.0](./4_9_0/index.html)

Modified: lucene/cms/trunk/content/core/quickstart.mdtext
URL: http://svn.apache.org/viewvc/lucene/cms/trunk/content/core/quickstart.mdtext?rev=1605315&r1=1605314&r2=1605315&view=diff
==============================================================================
--- lucene/cms/trunk/content/core/quickstart.mdtext (original)
+++ lucene/cms/trunk/content/core/quickstart.mdtext Wed Jun 25 10:09:17 2014
@@ -5,6 +5,5 @@ in the documentation for that release.
 
 The most recent versions can also be found online:
 
-- <a href="4_8_1/demo/overview-summary.html#overview_description">Lucene 4.8.1 Demo (minimum Java 7)</a>
-- <a href="4_7_2/demo/overview-summary.html#overview_description">Lucene 4.7.2 Demo (last Java 6)</a>
+- <a href="4_9_0/demo/overview-summary.html#overview_description">Lucene 4.9.0 Demo</a>
 

Modified: lucene/cms/trunk/content/core/systemreqs.mdtext
URL: http://svn.apache.org/viewvc/lucene/cms/trunk/content/core/systemreqs.mdtext?rev=1605315&r1=1605314&r2=1605315&view=diff
==============================================================================
--- lucene/cms/trunk/content/core/systemreqs.mdtext (original)
+++ lucene/cms/trunk/content/core/systemreqs.mdtext Wed Jun 25 10:09:17 2014
@@ -2,5 +2,4 @@
 
 The system requirements of the various Lucene releases are listed on their documentation pages:
 
-- [4.8.1](./4_8_1/SYSTEM_REQUIREMENTS.html)
-- [4.7.2](./4_7_2/SYSTEM_REQUIREMENTS.html)
+- [4.9.0](./4_9_0/SYSTEM_REQUIREMENTS.html)

Modified: lucene/cms/trunk/content/mainnews.mdtext
URL: http://svn.apache.org/viewvc/lucene/cms/trunk/content/mainnews.mdtext?rev=1605315&r1=1605314&r2=1605315&view=diff
==============================================================================
--- lucene/cms/trunk/content/mainnews.mdtext (original)
+++ lucene/cms/trunk/content/mainnews.mdtext Wed Jun 25 10:09:17 2014
@@ -1,5 +1,64 @@
 # Lucene<span style="vertical-align: super; font-size: xx-small">TM</span> News
 
+## 25 June 2014 - Apache Lucene 4.9.0 and Apache Solr 4.9.0 Available
+
+The Lucene PMC is pleased to announce the availability
+of Apache Lucene 4.9.0 and Apache Solr 4.9.0.
+
+Lucene can be downloaded from <http://lucene.apache.org/core/mirrors-core-latest-redir.html>
+and Solr can be downloaded from <http://lucene.apache.org/solr/mirrors-solr-latest-redir.html>
+
+See the [Lucene CHANGES.txt](/core/4_9_0/changes/Changes.html) and
+[Solr CHANGES.txt](/solr/4_9_0/changes/Changes.html) files included
+with the release for a full list of details.
+
+### Highlights of the Lucene release include:
+
+* New Terms.getMin/Max methods to retrieve the lowest and highest
+  terms per field.
+
+* New IDVersionPostingsFormat, optimized for ID lookups that associate
+  a monotonically increasing version per ID.
+
+* Atomic update of a set of doc values fields.
+
+* Numerous optimizations for doc values search-time performance.
+
+* New (default) Lucene49NormsFormat to better compress certain cases
+  such as very short fields.
+
+* New SORTED_NUMERIC docvalues type for efficient processing of
+  multi-valued numeric fields.
+
+* Indexer passes previous token stream for easier reuse.
+
+* MoreLikeThis accepts multiple values per field.
+
+* All classes that estimate their RAM usage now implement a new
+  Accountable interface.
+
+* Lucene files are now written by (File)OutputStream on all platforms,
+  completely disallowing seeking with simplified IO APIs.
+
+* Improve the confusing error message when MMapDirectory cannot create
+  a new map.
+
+### Highlights of the Solr release include:
+
+* Numerous optimizations for doc values search-time performance
+
+* Allow a client application to request the minium achieved replication
+  factor for an update request (single or batch) by sending an optional
+  parameter "min_rf".
+
+* Query re-ranking support with the new ReRankingQParserPlugin.
+
+* A new [child ...] DocTransformer for optionally including Block-Join
+  decendent documents inline in the results of a search.
+
+* A new (default) Lucene49NormsFormat to better compress certain cases
+  such as very short fields.
+
 ## 11 June 2014 - Open Relevance sub-project closed
 The Apache Lucene Project Management Committee decided in a vote,
 that the Apache Lucene sub-project "Open Relevance" will be discontinued. There was only modest activity during the last

Modified: lucene/cms/trunk/content/solr/doap.rdf
URL: http://svn.apache.org/viewvc/lucene/cms/trunk/content/solr/doap.rdf?rev=1605315&r1=1605314&r2=1605315&view=diff
==============================================================================
--- lucene/cms/trunk/content/solr/doap.rdf (original)
+++ lucene/cms/trunk/content/solr/doap.rdf Wed Jun 25 10:09:17 2014
@@ -39,6 +39,14 @@
     <wiki rdf:resource="http://wiki.apache.org/solr/"/>
     <release>
       <Version>
+        <branch>lucene_solr_4_9</branch>
+        <name>solr-4.9.0</name>
+        <created>2014-06-25</created>
+        <revision>4.9.0</revision>
+      </Version>
+    </release>
+    <release>
+      <Version>
         <branch>lucene_solr_4_8</branch>
         <name>solr-4.8.1</name>
         <created>2014-05-20</created>

Modified: lucene/cms/trunk/content/solr/documentation.mdtext
URL: http://svn.apache.org/viewvc/lucene/cms/trunk/content/solr/documentation.mdtext?rev=1605315&r1=1605314&r2=1605315&view=diff
==============================================================================
--- lucene/cms/trunk/content/solr/documentation.mdtext (original)
+++ lucene/cms/trunk/content/solr/documentation.mdtext Wed Jun 25 10:09:17 2014
@@ -29,8 +29,7 @@ Copies of this documentation for the mos
 each major branch under active development can also be found 
 online:
 
-- [4.8.1](./4_8_1/index.html) (requires minimum Java 7)
-- [4.7.2](./4_7_2/index.html) (last Java 6 compatible version)
+- [4.9.0](./4_9_0/index.html)
 
 ## The Apache Solr Reference Guide
 

Modified: lucene/cms/trunk/content/solr/solrnews.mdtext
URL: http://svn.apache.org/viewvc/lucene/cms/trunk/content/solr/solrnews.mdtext?rev=1605315&r1=1605314&r2=1605315&view=diff
==============================================================================
--- lucene/cms/trunk/content/solr/solrnews.mdtext (original)
+++ lucene/cms/trunk/content/solr/solrnews.mdtext Wed Jun 25 10:09:17 2014
@@ -1,5 +1,39 @@
 # Solr<span style="vertical-align: super; font-size: xx-small">TM</span> News
 
+## 25 June 2014 - Apache Solr 4.9.0 Available
+
+The Lucene PMC is pleased to announce the release of Apache Solr 4.9.0
+
+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.
+
+Solr 4.9.0 is available for immediate download at:
+  http://lucene.apache.org/solr/mirrors-solr-latest-redir.html
+
+See the [CHANGES.txt](/solr/4_9_0/changes/Changes.html)
+file included with the release for a full list of details.
+
+Solr 4.9.0 Release Highlights:
+
+* Numerous optimizations for doc values search-time performance
+
+* Allow a client application to request the minium achieved replication 
+  factor for an update request (single or batch) by sending an optional 
+  parameter "min_rf".
+
+* Query re-ranking support with the new ReRankingQParserPlugin.
+
+* A new [child ...] DocTransformer for optionally including Block-Join 
+  decendent documents inline in the results of a search.
+
+* A new (default) Lucene49NormsFormat to better compress certain cases
+  such as very short fields.
+
 ## 20 May 2014 - Apache Solr 4.8.1 Available
 
 The Lucene PMC is pleased to announce the release of Apache Solr 4.8.1

Modified: lucene/cms/trunk/content/solr/tutorial.mdtext
URL: http://svn.apache.org/viewvc/lucene/cms/trunk/content/solr/tutorial.mdtext?rev=1605315&r1=1605314&r2=1605315&view=diff
==============================================================================
--- lucene/cms/trunk/content/solr/tutorial.mdtext (original)
+++ lucene/cms/trunk/content/solr/tutorial.mdtext Wed Jun 25 10:09:17 2014
@@ -6,8 +6,7 @@ in the documentation for that release.
 Copies of the tutorial for the most recent release of each 
 major branch under active development can also be found online:
 
-- <a href="4_8_1/tutorial.html">Solr 4.8.1 Tutorial</a>
-- <a href="4_7_2/tutorial.html">Solr 4.7.2 Tutorial</a>
+- <a href="4_9_0/tutorial.html">Solr 4.9.0 Tutorial</a>
 
 Users who have completed the tutorial, are encouraged to review 
 the [other documentation available][1].

Modified: lucene/cms/trunk/templates/core-sidebar.html
URL: http://svn.apache.org/viewvc/lucene/cms/trunk/templates/core-sidebar.html?rev=1605315&r1=1605314&r2=1605315&view=diff
==============================================================================
--- lucene/cms/trunk/templates/core-sidebar.html (original)
+++ lucene/cms/trunk/templates/core-sidebar.html Wed Jun 25 10:09:17 2014
@@ -4,9 +4,9 @@
     <div class="button-green">
       <a href="mirrors-core-latest-redir.html?">Download</a>
       <div class="flap top">Click to begin</div>
-      <div class="flap bottom">of Apache Lucene 4.8.1</div>
+      <div class="flap bottom">of Apache Lucene 4.9.0</div>
     </div>
-    <div class="download-desc">Apache Lucene 4.8.1</div>
+    <div class="download-desc">Apache Lucene 4.9.0</div>
   </div>
   {% filter markdown %}{% include "corenav.mdtext" %}{% endfilter %}
   <div class="status">

Modified: lucene/cms/trunk/templates/corenav.mdtext
URL: http://svn.apache.org/viewvc/lucene/cms/trunk/templates/corenav.mdtext?rev=1605315&r1=1605314&r2=1605315&view=diff
==============================================================================
--- lucene/cms/trunk/templates/corenav.mdtext (original)
+++ lucene/cms/trunk/templates/corenav.mdtext Wed Jun 25 10:09:17 2014
@@ -7,8 +7,7 @@
 
 # Release Docs
 
-- [4.8.1](./4_8_1/index.html)
-- [4.7.2](./4_7_2/index.html)
+- [4.9.0](./4_9_0/index.html)
 
 # About
 - [License](http://www.apache.org/licenses/LICENSE-2.0)

Modified: lucene/cms/trunk/templates/mirrors-core-latest-redir.html
URL: http://svn.apache.org/viewvc/lucene/cms/trunk/templates/mirrors-core-latest-redir.html?rev=1605315&r1=1605314&r2=1605315&view=diff
==============================================================================
--- lucene/cms/trunk/templates/mirrors-core-latest-redir.html (original)
+++ lucene/cms/trunk/templates/mirrors-core-latest-redir.html Wed Jun 25 10:09:17 2014
@@ -4,7 +4,7 @@
 #}
 {% extends "head.html" %}
 {% block css %}
-    <meta http-equiv="refresh" content="1;url=http://www.apache.org/dyn/closer.cgi/lucene/java/4.8.1">
+    <meta http-equiv="refresh" content="1;url=http://www.apache.org/dyn/closer.cgi/lucene/java/4.9.0">
     <META HTTP-EQUIV="CACHE-CONTROL" CONTENT="NO-CACHE">
     <link href="../css/global.css" rel="stylesheet" type="text/css">
     <link href="../css/core.css" rel="stylesheet" type="text/css">

Modified: lucene/cms/trunk/templates/mirrors-solr-latest-redir.html
URL: http://svn.apache.org/viewvc/lucene/cms/trunk/templates/mirrors-solr-latest-redir.html?rev=1605315&r1=1605314&r2=1605315&view=diff
==============================================================================
--- lucene/cms/trunk/templates/mirrors-solr-latest-redir.html (original)
+++ lucene/cms/trunk/templates/mirrors-solr-latest-redir.html Wed Jun 25 10:09:17 2014
@@ -5,7 +5,7 @@
 #}
 {% extends "head.html" %}
 {% block css %}
-    <meta http-equiv="refresh" content="1;url=http://www.apache.org/dyn/closer.cgi/lucene/solr/4.8.1">
+    <meta http-equiv="refresh" content="1;url=http://www.apache.org/dyn/closer.cgi/lucene/solr/4.9.0">
     <META HTTP-EQUIV="CACHE-CONTROL" CONTENT="NO-CACHE">
     <link href="../css/global.css" rel="stylesheet" type="text/css">
     <link href="../css/solr.css" rel="stylesheet" type="text/css">

Modified: lucene/cms/trunk/templates/sidenav.mdtext
URL: http://svn.apache.org/viewvc/lucene/cms/trunk/templates/sidenav.mdtext?rev=1605315&r1=1605314&r2=1605315&view=diff
==============================================================================
--- lucene/cms/trunk/templates/sidenav.mdtext (original)
+++ lucene/cms/trunk/templates/sidenav.mdtext Wed Jun 25 10:09:17 2014
@@ -2,15 +2,15 @@
   <div class="button-green">
     <a href="core/mirrors-core-latest-redir.html?">Download</a>
     <div class="flap top">Click to begin</div>
-    <div class="flap bottom">of Apache Lucene 4.8.1</div>
+    <div class="flap bottom">of Apache Lucene 4.9.0</div>
   </div>
-  <div class="download-desc">Apache Lucene 4.8.1</div>
+  <div class="download-desc">Apache Lucene 4.9.0</div>
   <div class="button-orange">
     <a href="solr/mirrors-solr-latest-redir.html?">Download</a>
     <div class="flap top">Click to begin</div>
-    <div class="flap bottom">of Apache Solr 4.8.1</div>
+    <div class="flap bottom">of Apache Solr 4.9.0</div>
   </div>
-  <div class="download-desc">Apache Solr 4.8.1</div>
+  <div class="download-desc">Apache Solr 4.9.0</div>
 
 # Projects
   - [Lucene Core (Java)](./core/)

Modified: lucene/cms/trunk/templates/solr-sidebar.html
URL: http://svn.apache.org/viewvc/lucene/cms/trunk/templates/solr-sidebar.html?rev=1605315&r1=1605314&r2=1605315&view=diff
==============================================================================
--- lucene/cms/trunk/templates/solr-sidebar.html (original)
+++ lucene/cms/trunk/templates/solr-sidebar.html Wed Jun 25 10:09:17 2014
@@ -4,8 +4,8 @@
     <div class="button-orange">
      <a href="mirrors-solr-latest-redir.html?">Download</a>
       <div class="flap top">Click to begin</div>
-      <div class="flap bottom">of Apache Solr 4.8.1 </div>
-      <div class="download-desc">Apache Solr 4.8.1</div>
+      <div class="flap bottom">of Apache Solr 4.9.0 </div>
+      <div class="download-desc">Apache Solr 4.9.0</div>
     </div>
   </div>
   <span class="sidenav">{% filter markdown %}{% include "solrnav.mdtext" %}{% endfilter %}