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 2012/08/14 05:56:51 UTC

svn commit: r828860 - in /websites/staging/lucene/trunk/content: ./ mainnews.html solr/solrnews.html

Author: buildbot
Date: Tue Aug 14 03:56:50 2012
New Revision: 828860

Log:
Staging update by buildbot for lucene

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

Propchange: websites/staging/lucene/trunk/content/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Tue Aug 14 03:56:50 2012
@@ -1 +1 @@
-1372717
+1372720

Modified: websites/staging/lucene/trunk/content/mainnews.html
==============================================================================
--- websites/staging/lucene/trunk/content/mainnews.html (original)
+++ websites/staging/lucene/trunk/content/mainnews.html Tue Aug 14 03:56:50 2012
@@ -191,6 +191,78 @@
       <h1 class="title"></h1>
 
       <div><h1 id="news">News</h1>
+<h2 id="14-august-2012-lucene-core-40-beta-and-solr-40-beta-available">14 August 2012 - Lucene Core 4.0-BETA and Solr 4.0-BETA Available</h2>
+<p>The Lucene PMC is pleased to announce the availability
+of Apache Lucene 4.0-BETA and Apache Solr 4.0-BETA</p>
+<p>Lucene can be downloaded from <a href="/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="/solr/mirrors-solr-latest-redir.html?">http://lucene.apache.org/solr/mirrors-solr-latest-redir.html</a></p>
+<p>Highlights of the Lucene release include:</p>
+<ul>
+<li>
+<p><a href="http://lucene.apache.org/core/4_0_0-BETA/core/org/apache/lucene/index/IndexWriter.html#tryDeleteDocument%28org.apache.lucene.index.IndexReader,%20int%29">
+  IndexWriter.tryDeleteDocument</a> can sometimes delete by document ID,
+  for higher performance in some applications.</p>
+</li>
+<li>
+<p>New experimental postings formats: <a href="http://lucene.apache.org/core/4_0_0-BETA/core/org/apache/lucene/codecs/bloom/BloomFilteringPostingsFormat.html">
+  BloomFilteringPostingsFormat</a> uses a bloom filter to sometimes avoid
+  disk seeks when looking up terms,
+  <a href="http://lucene.apache.org/core/4_0_0-BETA/core/org/apache/lucene/codecs/memory/DirectPostingsFormat.html">
+  DirectPostingsFormat</a> holds all postings as simple byte[] and int[]
+  for very fast performance at the cost of very high RAM consumption.</p>
+</li>
+<li>
+<p>CJK analysis improvements: <a href="http://lucene.apache.org/core/4_0_0-BETA/analyzers-kuromoji/org/apache/lucene/analysis/ja/JapaneseIterationMarkCharFilter.html">
+  JapaneseIterationMarkCharFilter</a> normalizes Japanese iteration marks,
+  added unigram+bigram support to <a href="http://lucene.apache.org/core/4_0_0-BETA/analyzers-common/org/apache/lucene/analysis/cjk/CJKBigramFilter.html">
+  CJKBigramFilter</a>.</p>
+</li>
+<li>
+<p>Improvements to Scorer navigation API (<a href="http://lucene.apache.org/core/4_0_0-BETA/core/org/apache/lucene/search/Scorer.html#getChildren%28%29">
+  Scorer.getChildren</a>) to support all queries, useful for determining
+  which portions of the query matched.</p>
+</li>
+<li>
+<p>Analysis improvements: factories for creating <a href="http://lucene.apache.org/core/4_0_0-BETA/analyzers-common/org/apache/lucene/analysis/util/TokenizerFactory.html">
+  Tokenizer</a>, <a href="http://lucene.apache.org/core/4_0_0-BETA/analyzers-common/org/apache/lucene/analysis/util/TokenFilterFactory.html">
+  TokenFilter</a>, and <a href="http://lucene.apache.org/core/4_0_0-BETA/analyzers-common/org/apache/lucene/analysis/util/CharFilterFactory.html">
+  CharFilter</a> have been moved from Solr to Lucene's analysis module,
+  less memory overhead for StandardTokenizer and Snowball filters.</p>
+</li>
+<li>
+<p>Improved highlighting for multi-valued fields.</p>
+</li>
+<li>
+<p>Various other API changes, optimizations and bug fixes.</p>
+</li>
+</ul>
+<p>Highlights of the Solr release include:</p>
+<ul>
+<li>
+<p>Added a Collection management API for <a href="http://wiki.apache.org/solr/SolrCloud/">Solr Cloud</a>.</p>
+</li>
+<li>
+<p>Solr Admin UI now clearly displays failures related to initializing SolrCores</p>
+</li>
+<li>
+<p>Updatable documents can create a document if it doesn't already exist,
+  or you can force that the document must already exist.</p>
+</li>
+<li>
+<p>Full delete-by-query support for Solr Cloud.</p>
+</li>
+<li>
+<p>Default to <a href="http://lucene.apache.org/solr/api-4_0_0-BETA/org/apache/solr/core/NRTCachingDirectoryFactory.html">
+  NRTCachingDirectory</a> for improved near-realtime performance.</p>
+</li>
+<li>
+<p>Improved <a href="http://wiki.apache.org/solr/Solrj">Solrj</a> client performance
+  with Solr Cloud: updates are only sent to leaders by default.</p>
+</li>
+<li>
+<p>Various other API changes, optimizations and bug fixes.</p>
+</li>
+</ul>
 <h2 id="22-july-2012-apache-lucene-361-and-apache-solr-361-available">22 July 2012 - Apache Lucene 3.6.1 and Apache Solr 3.6.1 available</h2>
 <p>The Lucene PMC is pleased to announce the availability
 of Apache Lucene 3.6.1 and Apache Solr 3.6.1.</p>

Modified: websites/staging/lucene/trunk/content/solr/solrnews.html
==============================================================================
--- websites/staging/lucene/trunk/content/solr/solrnews.html (original)
+++ websites/staging/lucene/trunk/content/solr/solrnews.html Tue Aug 14 03:56:50 2012
@@ -227,6 +227,51 @@
       <h1 class="title"></h1>
 
       <div><h1 id="solr-news">Solr News</h1>
+<h2 id="14-august-2012-apache-solr-40-beta-available">14 August 2012 - Apache Solr 4.0-beta available</h2>
+<p>The Lucene PMC is pleased to announce the release of Apache Solr 4.0-beta.</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.0-beta is available for immediate download at:
+  <a href="/solr/mirrors-solr-latest-redir.html?">http://lucene.apache.org/solr/mirrors-solr-latest-redir.html</a></p>
+<p>See the <a href="http://svn.apache.org/repos/asf/lucene/dev/tags/lucene_solr_4_0_0_BETA/solr/CHANGES.txt">
+CHANGES.txt</a> file included with the release for a full list of
+details.</p>
+<p>Highlights of changes since 4.0-alpha:</p>
+<ul>
+<li>
+<p>Added a Collection management API for <a href="http://wiki.apache.org/solr/SolrCloud/">Solr Cloud</a>.</p>
+</li>
+<li>
+<p>Solr Admin UI now clearly displays failures related to initializing SolrCores</p>
+</li>
+<li>
+<p>Updatable documents can create a document if it doesn't already exist,
+  or you can force that the document must already exist.</p>
+</li>
+<li>
+<p>Full delete-by-query support for Solr Cloud.</p>
+</li>
+<li>
+<p>Default to <a href="http://lucene.apache.org/solr/api-4_0_0-BETA/org/apache/solr/core/NRTCachingDirectoryFactory.html">
+  NRTCachingDirectory</a> for improved near-realtime performance.</p>
+</li>
+<li>
+<p>Improved <a href="http://wiki.apache.org/solr/Solrj">Solrj</a> client performance 
+  with Solr Cloud: updates are only sent to leaders by default.</p>
+</li>
+<li>
+<p>Various other API changes, optimizations and bug fixes. </p>
+</li>
+</ul>
+<p>This is a beta for early adopters. The guarantee for this beta release is that the index 
+format will be the 4.0 index format, supported through the 5.x series of Lucene/Solr, unless there 
+is a critical bug (e.g. that would cause index corruption) that would prevent this.</p>
+<p>Please report any feedback to the mailing lists (<a href="http://lucene.apache.org/solr/discussion.html">http://lucene.apache.org/solr/discussion.html</a>)</p>
 <h2 id="22-july-2012-apache-solr-361-available">22 July 2012 - Apache Solr 3.6.1 available</h2>
 <p>The Lucene PMC is pleased to announce the release of Apache Solr 3.6.1.</p>
 <p>Solr is the popular, blazing fast open source enterprise search platform from