Return-Path: X-Original-To: apmail-lucene-java-user-archive@www.apache.org Delivered-To: apmail-lucene-java-user-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id B58EFE86F for ; Tue, 22 Jan 2013 16:22:28 +0000 (UTC) Received: (qmail 2485 invoked by uid 500); 22 Jan 2013 16:22:23 -0000 Delivered-To: apmail-lucene-java-user-archive@lucene.apache.org Received: (qmail 1773 invoked by uid 500); 22 Jan 2013 16:22:22 -0000 Mailing-List: contact java-user-help@lucene.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: java-user@lucene.apache.org Delivered-To: mailing list java-user@lucene.apache.org Received: (qmail 532 invoked by uid 99); 22 Jan 2013 16:22:21 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 22 Jan 2013 16:22:21 +0000 X-ASF-Spam-Status: No, hits=-0.7 required=5.0 tests=RCVD_IN_DNSWL_LOW,SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (nike.apache.org: domain of sarowe@gmail.com designates 209.85.212.52 as permitted sender) Received: from [209.85.212.52] (HELO mail-vb0-f52.google.com) (209.85.212.52) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 22 Jan 2013 16:22:14 +0000 Received: by mail-vb0-f52.google.com with SMTP id fa15so3876301vbb.11 for ; Tue, 22 Jan 2013 08:21:53 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=x-received:sender:from:content-type:content-transfer-encoding :subject:message-id:date:to:mime-version:x-mailer; bh=GXjNy2iuluOKgnFrvAYQ4jG+jTRUWIKwZ/jUOeLatLU=; b=rYsgHL4n1AbzRCdnr9sbZeomQMO8n9VrngNw6jzEu9ZKc92AD2G3LZ/Ur6xIsl6msA yFmtbPxGht6+lIGP6VZCuwhTc9X7tQO1ePO6W9kFVmeLjfCflsn8CP2TKlk1NYpEkWag rHIYV824uRZmBfaxKUxLQ1aS7G78C6JDb5KCcyl8Zp/lRz5i1na6Ja/E7DNWzG/gTFz9 r6k8oQaN0WQjyZGKx0d+8q/NXmtYNkSBgZxngQf7hPtNjfeH+dnmkypbjhxVQ8gUK4kw IHvaZrYXm0VtcCGy/arrBjnHZsjprVfbWYnA7CMJMq1zFf6dm6KUtux4g3qfeF7GR07N Gtog== X-Received: by 10.52.29.109 with SMTP id j13mr16970363vdh.111.1358871713212; Tue, 22 Jan 2013 08:21:53 -0800 (PST) Received: from [192.168.1.204] (cpe-67-249-104-72.twcny.res.rr.com. [67.249.104.72]) by mx.google.com with ESMTPS id x17sm9779734vdi.1.2013.01.22.08.21.51 (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Tue, 22 Jan 2013 08:21:52 -0800 (PST) Sender: Steve Rowe From: Steve Rowe Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: quoted-printable Subject: [ANNOUNCE] Apache Lucene 4.1 released Message-Id: Date: Tue, 22 Jan 2013 11:21:50 -0500 To: "dev@lucene.apache.org" , "java-user@lucene.apache.org" , "general@lucene.apache.org" , announce@apache.org Mime-Version: 1.0 (Mac OS X Mail 6.2 \(1499\)) X-Mailer: Apple Mail (2.1499) X-Virus-Checked: Checked by ClamAV on apache.org January 2013, Apache Lucene=99 4.1 available The Lucene PMC is pleased to announce the release of Apache Lucene 4.1. 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 file included with the release for a full list of details. Lucene 4.1 Release Highlights: * Lucene 4.1 has a new default codec (Lucene41Codec) based on the previously-experimental "Block" indexing format for improved performance, but also incorporating the functionality of "Appending" and "Pulsing". * The default codec incorporates the optimization of Pulsing: terms that appear in only one document (such as primary key/id fields) just store the document id in the term dictionary instead of a pointer to this document id in a separate file. * The default codec incorporates an efficient compressed stored fields implementation that compresses chunks of documents together with LZ4. (see = http://blog.jpountz.net/post/33247161884/efficient-compressed-stored-field= s-with-lucene) * Lucene no longer seeks when writing files (all fields are written in an append-only way). This means it works by default with append-only streams, hdfs, etc. * New suggest implementations: AnalyzingSuggester, where the underlying form (computed from a lucene Analyzer) used for suggestions is separate from the returned text (see = http://blog.mikemccandless.com/2012/09/lucenes-new-analyzing-suggester.htm= l), and FuzzySuggester, which additionally allows for inexact matching on the input. * Near-realtime support was added to the facet module. (see http://shaierera.blogspot.com/2012/11/lucene-facets-part-1.html) * New Highlighter (postingshighlighter) added to the highlighter module. (see = http://blog.mikemccandless.com/2012/12/a-new-lucene-highlighter-is-born.ht= ml) * Added FilterStrategy to FilteredQuery for more flexibility in filtered query execution. * Added CommonTermsQuery to speed up queries with very highly frequent terms. Term frequencies are efficiently detected at query time - no index time preparation required. * Several bugfixes and optimizations since the 4.0 release. Please read CHANGES.txt for a full list of new features. Please report any feedback to the mailing lists (http://lucene.apache.org/core/discussion.html) Note: The Apache Software Foundation uses an extensive mirroring network for distributing releases. It is possible that the mirror you are using may not have replicated the release yet. If that is the case, please try another mirror. This also goes for Maven access. Happy searching, Lucene/Solr developers= --------------------------------------------------------------------- To unsubscribe, e-mail: java-user-unsubscribe@lucene.apache.org For additional commands, e-mail: java-user-help@lucene.apache.org