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/24 16:21:03 UTC

svn commit: r962898 - 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: Mon Aug 24 14:21:03 2015
New Revision: 962898

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
==============================================================================
    (empty)

Modified: websites/production/lucene/content/index.html
==============================================================================
--- websites/production/lucene/content/index.html (original)
+++ websites/production/lucene/content/index.html Mon Aug 24 14:21:03 2015
@@ -232,35 +232,41 @@ of Apache Lucene 5.3.0 and Apache Solr 5
 <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>
+<h4 id="api-changes">API Changes<a class="headerlink" href="#api-changes" title="Permanent link">&para;</a></h4>
+<ul>
+<li>PhraseQuery and BooleanQuery are now immutable</li>
+</ul>
+<h4 id="new-features">New features<a class="headerlink" href="#new-features" title="Permanent link">&para;</a></h4>
+<ul>
+<li>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</li>
+<li>Added a new BlendedTermQuery to blend statistics across several terms</li>
+<li>New common suggest API that mirrors Lucene's Query/IndexSearcher APIs for Document based suggester.</li>
+<li>IndexWriter can now be initialized from an already open near-real-time or non-NRT reader</li>
+<li>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.</li>
+</ul>
+<h4 id="geo-related-features-and-improvements">Geo-related features and improvements<a class="headerlink" href="#geo-related-features-and-improvements" title="Permanent link">&para;</a></h4>
+<ul>
+<li>Added GeoPointField, GeoPointInBBoxQuery, GeoPointInPolygonQuery for simple "indexed lat/lon point in bbox/shape" searching</li>
+<li>Added experimental BKD geospatial tree doc values format and queries, for fast "bbox/polygon contains lat/lon points"</li>
+<li>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</li>
+</ul>
+<h4 id="optimizations">Optimizations<a class="headerlink" href="#optimizations" title="Permanent link">&para;</a></h4>
+<ul>
+<li>Reduce RAM usage of FieldInfos, and speed up lookup by number, by using an array instead of TreeMap except in very sparse cases</li>
+<li>Faster intersection of the terms dictionary with very finite automata, which can be generated eg. by simple regexp queries</li>
+<li>Various bugfixes and optimizations since the 5.2.0 release.</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>
-<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>
+<ul>
+<li>In built security plugins implementing Basic Auth</li>
+<li>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.</li>
+<li>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.</li>
+<li>Major improvements in performance of the new Facet Module / JSON Facet API.</li>
+<li>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.</li>
+<li>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</li>
+<li>Scoring mode for query-time join and block join.* Smile response format</li>
+</ul>
 <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>

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

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)