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/08/23 23:21:04 UTC

svn commit: r962835 - in /websites: production/lucene/content/ production/lucene/content/core/ production/lucene/content/solr/ staging/lucene/trunk/content/ staging/lucene/trunk/content/core/ staging/lucene/trunk/content/solr/

Author: buildbot
Date: Sun Aug 23 21:21:04 2015
New Revision: 962835

Log:
Dynamic update by buildbot for lucene

Modified:
    websites/production/lucene/content/core/index.html
    websites/production/lucene/content/index.html
    websites/production/lucene/content/solr/index.html
    websites/staging/lucene/trunk/content/core/index.html
    websites/staging/lucene/trunk/content/index.html
    websites/staging/lucene/trunk/content/solr/index.html

Modified: websites/production/lucene/content/core/index.html
==============================================================================
--- websites/production/lucene/content/core/index.html (original)
+++ websites/production/lucene/content/core/index.html Sun Aug 23 21:21:04 2015
@@ -291,9 +291,9 @@ h2:hover > .headerlink, h3:hover > .head
     <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 5.2.1</div>
+      <div class="flap bottom">of Apache Lucene 5.3.0</div>
     </div>
-    <div class="download-desc">Apache Lucene 5.2.1</div>
+    <div class="download-desc">Apache Lucene 5.3.0</div>
   </div>
   <style type="text/css">
 /* The following code is added by mdx_elementid.py
@@ -316,7 +316,7 @@ h2:hover > .headerlink, h3:hover > .head
 </ul>
 <h1 id="release-docs">Release Docs<a class="headerlink" href="#release-docs" title="Permanent link">&para;</a></h1>
 <ul>
-<li><a href="./5_2_1/index.html">5.2.1</a></li>
+<li><a href="./5_3_0/index.html">5.3.0</a></li>
 </ul>
 <h1 id="about">About<a class="headerlink" href="#about" title="Permanent link">&para;</a></h1>
 <ul>

Modified: websites/production/lucene/content/index.html
==============================================================================
--- websites/production/lucene/content/index.html (original)
+++ websites/production/lucene/content/index.html Sun Aug 23 21:21:04 2015
@@ -226,17 +226,52 @@ h2:hover > .headerlink, h3:hover > .head
 }
 h2:hover > .headerlink, h3:hover > .headerlink, h1:hover > .headerlink, h6:hover > .headerlink, h4:hover > .headerlink, h5:hover > .headerlink, dt:hover > .elementid-permalink { visibility: visible }</style>
 <h1 id="lucenetm-news">Lucene<span style="vertical-align: super; font-size: xx-small">TM</span> News<a class="headerlink" href="#lucenetm-news" title="Permanent link">&para;</a></h1>
+<h2 id="25-august-2015-apache-lucene-530-and-apache-solr-530-available">25 August 2015 - Apache Lucene 5.3.0 and Apache Solr 5.3.0 Available<a class="headerlink" href="#25-august-2015-apache-lucene-530-and-apache-solr-530-available" title="Permanent link">&para;</a></h2>
+<p>The Lucene PMC is pleased to announce the availability
+of Apache Lucene 5.3.0 and Apache Solr 5.3.0.</p>
+<p>Lucene can be downloaded from <a href="http://www.apache.org/dyn/closer.cgi/lucene/java/5.3.0">http://www.apache.org/dyn/closer.cgi/lucene/java/5.3.0</a>
+and Solr can be downloaded from <a href="http://www.apache.org/dyn/closer.cgi/lucene/solr/5.3.0">http://www.apache.org/dyn/closer.cgi/lucene/solr/5.3.0</a></p>
+<h3 id="highlights-of-this-lucene-release-include">Highlights of this Lucene release include:<a class="headerlink" href="#highlights-of-this-lucene-release-include" title="Permanent link">&para;</a></h3>
+<p>API Changes
+ * PhraseQuery and BooleanQuery are now immutable</p>
+<p>New features
+ * Added a new org.apache.lucene.search.join.CheckJoinIndex class that can be used to validate that an index has an appropriate structure to run join queries
+ * Added a new BlendedTermQuery to blend statistics across several terms
+ * New common suggest API that mirrors Lucene's Query/IndexSearcher APIs for Document based suggester.
+ * IndexWriter can now be initialized from an already open near-real-time or non-NRT reader
+ * Add experimental range tree doc values format and queries, based on a 1D version of the spatial BKD tree, for a faster and smaller alternative to postings-based numeric and binary term filtering.  Range trees can also handle values larger than 64 bits.</p>
+<p>Geo-related features and improvements
+ * Added GeoPointField, GeoPointInBBoxQuery, GeoPointInPolygonQuery for simple "indexed lat/lon point in bbox/shape" searching
+ * Added experimental BKD geospatial tree doc values format and queries, for fast "bbox/polygon contains lat/lon points"
+ * Use doc values to post-filter GeoPointField hits that fall in boundary cells, resulting in smaller index, faster searches and less heap used for each query</p>
+<p>Optimizations
+ * Reduce RAM usage of FieldInfos, and speed up lookup by number, by using an array instead of TreeMap except in very sparse cases
+ * Faster intersection of the terms dictionary with very finite automata, which can be generated eg. by simple regexp queries
+ * Various bugfixes and optimizations since the 5.2.0 release.</p>
+<h3 id="highlights-of-this-solr-release-include">Highlights of this Solr release include:<a class="headerlink" href="#highlights-of-this-solr-release-include" title="Permanent link">&para;</a></h3>
+<p>In built security plugins implementing Basic Auth
+In addition to many other improvements in the security framework, Solr now includes an AuthenticationPlugin implementing HTTP Basic Auth that stores credentials securely in ZooKeeper. This is a simple way to require a username and password for anyone accessing Solr’s admin screen or APIs.
+The JSON Facet API can now change the domain for facet commands, essentially doing a block join and moving from parents to children, or children to parents before calculating the facet data.
+Major improvements in performance of the new Facet Module / JSON Facet API.
+Query and Range Facets under Pivot Facets. Just like the JSON Facet API, pivot facets can how nest other facet types such as range and query facets.
+More Like This Query Parser options. The MoreLikeThis QParser mlt now supports all options provided by the MLT Handler. The query parser is much more versatile than the handler as it works in cloud mode as well as anywhere a normal query can be specified.
+Schema API support in SolrJ
+Scoring mode for query-time join and block join. Solr’s pseudo-join query parser has a new optional attribute score that can be used specify the scores produced on the resulting documents. It’s value can be min, max,avg or total.
+Query Comments. Lucene/Solr query syntax (i.e. Solr’s dialect of the lucene syntax) now supports nested C-style comments.
+Smile data format
+Smile is a binary data interchange format that is very close to Solr’s own “javabin” (encoded sizes are very close). Adding wt=smile to a request will cause the response to come back in this format.
+min/max for multi-valued docValues fields.A second parameter has been added to the field function to select the minimum or maximum value of a multi-valued field with docValues.</p>
 <h2 id="15-june-2015-apache-lucene-521-and-apache-solr-521-available">15 June 2015 - Apache Lucene 5.2.1 and Apache Solr 5.2.1 Available<a class="headerlink" href="#15-june-2015-apache-lucene-521-and-apache-solr-521-available" title="Permanent link">&para;</a></h2>
 <p>The Lucene PMC is pleased to announce the release of Apache Lucene 5.2.1 and Apache Solr 5.2.1</p>
 <p>Lucene can be downloaded from <a href="http://www.apache.org/dyn/closer.cgi/lucene/java/5.2.1">http://www.apache.org/dyn/closer.cgi/lucene/java/5.2.1</a>
 and Solr can be downloaded from <a href="http://www.apache.org/dyn/closer.cgi/lucene/solr/5.2.1">http://www.apache.org/dyn/closer.cgi/lucene/solr/5.2.1</a></p>
-<h3 id="highlights-of-this-lucene-release-include">Highlights of this Lucene release include:<a class="headerlink" href="#highlights-of-this-lucene-release-include" title="Permanent link">&para;</a></h3>
+<h3 id="highlights-of-this-lucene-release-include_1">Highlights of this Lucene release include:<a class="headerlink" href="#highlights-of-this-lucene-release-include_1" title="Permanent link">&para;</a></h3>
 <ul>
 <li>Fix class loading deadlock relating to Codec initialization, default codec and SPI discovery.</li>
 <li>NRT readers now reflect a new commit even if there is no change to the commit user data</li>
 <li>Queries now get a dummy Similarity when scores are not needed in order to not load unnecessary information like norms</li>
 </ul>
-<h3 id="highlights-of-this-solr-release-include">Highlights of this Solr release include:<a class="headerlink" href="#highlights-of-this-solr-release-include" title="Permanent link">&para;</a></h3>
+<h3 id="highlights-of-this-solr-release-include_1">Highlights of this Solr release include:<a class="headerlink" href="#highlights-of-this-solr-release-include_1" title="Permanent link">&para;</a></h3>
 <ul>
 <li>Fix javascript bug introduced by SOLR-7409 that breaks the dataimport screen in the admin UI</li>
 <li>Faceting on a numeric field with a unique() subfacet function on another numeric field can result in incorrect results or an exception</li>
@@ -255,7 +290,7 @@ with the release for a full list of deta
 of Apache Lucene 5.2.0 and Apache Solr 5.2.0.</p>
 <p>Lucene can be downloaded from <a href="http://www.apache.org/dyn/closer.cgi/lucene/java/5.2.0">http://www.apache.org/dyn/closer.cgi/lucene/java/5.2.0</a>
 and Solr can be downloaded from <a href="http://www.apache.org/dyn/closer.cgi/lucene/solr/5.2.0">http://www.apache.org/dyn/closer.cgi/lucene/solr/5.2.0</a></p>
-<h3 id="highlights-of-this-lucene-release-include_1">Highlights of this Lucene release include:<a class="headerlink" href="#highlights-of-this-lucene-release-include_1" title="Permanent link">&para;</a></h3>
+<h3 id="highlights-of-this-lucene-release-include_2">Highlights of this Lucene release include:<a class="headerlink" href="#highlights-of-this-lucene-release-include_2" title="Permanent link">&para;</a></h3>
 <ul>
 <li>
 <p>Span queries now share document conjunction/intersection code with boolean queries, and use two-phased iterators for faster intersection by avoiding loading positions in certain cases.</p>
@@ -288,7 +323,7 @@ and Solr can be downloaded from <a href=
 <p>Various bugfixes and optimizations since the 5.1.0 release.</p>
 </li>
 </ul>
-<h3 id="highlights-of-this-solr-release-include_1">Highlights of this Solr release include:<a class="headerlink" href="#highlights-of-this-solr-release-include_1" title="Permanent link">&para;</a></h3>
+<h3 id="highlights-of-this-solr-release-include_2">Highlights of this Solr release include:<a class="headerlink" href="#highlights-of-this-solr-release-include_2" title="Permanent link">&para;</a></h3>
 <ul>
 <li>
 <p>Restore API allows restoring a core from an index backup.</p>
@@ -985,15 +1020,15 @@ h2:hover > .headerlink, h3:hover > .head
 <p><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 5.2.1</div>
+    <div class="flap bottom">of Apache Lucene 5.3.0</div>
   </div>
-  <div class="download-desc">Apache Lucene 5.2.1</div>
+  <div class="download-desc">Apache Lucene 5.3.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 5.2.1</div>
+    <div class="flap bottom">of Apache Solr 5.3.0</div>
   </div>
-  <div class="download-desc">Apache Solr 5.2.1</div></p>
+  <div class="download-desc">Apache Solr 5.3.0</div></p>
 <h1 id="projects">Projects<a class="headerlink" href="#projects" title="Permanent link">&para;</a></h1>
 <ul>
 <li><a href="./core/">Lucene Core (Java)</a></li>

Modified: websites/production/lucene/content/solr/index.html
==============================================================================
--- websites/production/lucene/content/solr/index.html (original)
+++ websites/production/lucene/content/solr/index.html Sun Aug 23 21:21:04 2015
@@ -442,13 +442,13 @@
       <div class="row">
         <div class="large-12 columns text-center">
           <div class="annotation">
-            Solr News | 15 June 2015
+            Solr News | 25 August 2015
           </div>
           <h1>
-             Apache Solr 5.2.1 available
+             Apache Solr 5.3.0 available
           </h1>
           <p>
-            The Lucene PMC is pleased to announce the release of Apache Solr 5.2.1.  Download <a href="/solr/mirrors-solr-latest-redir.html">here</a>.
+            The Lucene PMC is pleased to announce the release of Apache Solr 5.3.0.  Download <a href="/solr/mirrors-solr-latest-redir.html">here</a>.
           </p>
           <a href="/solr/news.html"><span class="white">Read More News</span></a>
         </div>

Modified: websites/staging/lucene/trunk/content/core/index.html
==============================================================================
    (empty)

Modified: websites/staging/lucene/trunk/content/index.html
==============================================================================
    (empty)

Modified: websites/staging/lucene/trunk/content/solr/index.html
==============================================================================
    (empty)