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:32:22 UTC

svn commit: r962902 - in /websites/staging/lucene/trunk/content: ./ solr/news.html

Author: buildbot
Date: Mon Aug 24 14:32:21 2015
New Revision: 962902

Log:
Staging update by buildbot for lucene

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

Propchange: websites/staging/lucene/trunk/content/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Mon Aug 24 14:32:21 2015
@@ -1 +1 @@
-1697408
+1697411

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 Mon Aug 24 14:32:21 2015
@@ -204,78 +204,14 @@ and navigation features of many of the w
 <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/5_3_0/changes/Changes.html">CHANGES.txt</a> file included with the release for a full list of details.</p>
 <p>Solr 5.3 Release Highlights:</p>
-<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.</p>
-<p>See the Basic Authentication Plugin section of the Solr ref guide under the Securing Solr section.</p>
-<p>Faceting Nested Documents
-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.</p>
-<p>For example, if you indexed chapters with pages as nested child documents, then you could map from chapters to pages before faceting by adding the following parameter to the facet command:</p>
-<p>domain : { blockChildren : "type:chapter" }
-Or if you started with pages, you could map to chapters with</p>
-<p>domain : { blockParent : "type:chapter" }
-Note that in both cases, we provide the parent filter (how parent documents are defined) of “type:chapter” regardless of which direction we are mapping.</p>
-<p>See this Nested Objects tutorial for complete examples of combining faceting and block join / nested documents.</p>
-<p>Facet Performance Improvements
-Major improvements in performance of the new Facet Module / JSON Facet API.
-See the facet performance benchmarks for more details.</p>
-<p>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.</p>
-<p>Example:
-<code>
-&amp;facet=true
-&amp;facet.range={!tag=r1}price
-&amp;f.price.facet.range.start=0
-&amp;f.price.facet.range.end=100
-&amp;f.price.facet.range.gap=10
-&amp;facet.query={!tag=q1}popularity:[8 TO 10]
-&amp;facet.pivot={!range=r1 query=q1}category
-</code>
-The equivalent in the JSON Facet API would be:
-<code>
-json.facet={
-  categories : {
-    type : terms,
-    field : category,
-    facet : {
-      r1 : {
-        type : range,
-        start : 0,
-        end : 100,
-        gap : 10
-      },
-      q1 : { query : "popularity:[8 TO 10]" }
-    }
-  }
-}
-</code>
-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.</p>
-<p>Example (on techproducts index):</p>
-<p>q={!mlt qf=name mintf=1 mindf=1}SP2514N
-More documentation on the mlt parser can be found in the Solr Ref Guide</p>
-<p>Schema API support in SolrJ
-The new SchemaRequest Java class in SolrJ can be used to make requests to the Schema API.</p>
-<p>Also see the Solr Schema API itself in the ref guide.</p>
-<p>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.</p>
-<p>Query-time join example:
-<code>
-q={!join from=author_id to=id score=total}blog_text:awesome
-</code>
-Block join example:
-<code>
-q={!parent of=type:author score=total}blog_text:awesome</code>
-See Nested Objects in Solr for more information on nested documents and block join.</p>
-<p>Query Comments
-Lucene/Solr query syntax (i.e. Solr’s dialect of the lucene syntax) now supports nested C-style comments.</p>
-<p>+cat:electronics /<em> this is a comment </em>/ +name:HDTV
-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.</p>
-<p>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>
-<p>Example:</p>
-<p>sort=field(my_dv_field,max) asc</p>
+<p>Highlights of this Solr release include:
+<em> In built security plugins implementing Basic Auth
+</em> 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.
+<em> 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.
+</em> Major improvements in performance of the new Facet Module / JSON Facet API.
+<em> 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.
+</em> 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
+<em> Scoring mode for query-time join and block join.</em> Smile response format</p>
 <h2 id="15-june-2015-apache-solr-521-available">15 June 2015, Apache Solr 5.2.1 available<a class="headerlink" href="#15-june-2015-apache-solr-521-available" title="Permanent link">&para;</a></h2>
 <p>The Lucene PMC is pleased to announce the release of Apache Solr 5.2.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>