Return-Path: Delivered-To: apmail-jakarta-lucene-dev-archive@www.apache.org Received: (qmail 76475 invoked from network); 29 Sep 2004 16:54:51 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 29 Sep 2004 16:54:51 -0000 Received: (qmail 14973 invoked by uid 500); 29 Sep 2004 16:54:48 -0000 Delivered-To: apmail-jakarta-lucene-dev-archive@jakarta.apache.org Received: (qmail 14834 invoked by uid 500); 29 Sep 2004 16:54:46 -0000 Mailing-List: contact lucene-dev-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Lucene Developers List" Reply-To: "Lucene Developers List" Delivered-To: mailing list lucene-dev@jakarta.apache.org Received: (qmail 14821 invoked by uid 500); 29 Sep 2004 16:54:46 -0000 Received: (qmail 14817 invoked by uid 99); 29 Sep 2004 16:54:46 -0000 X-ASF-Spam-Status: No, hits=-10.0 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.28) with SMTP; Wed, 29 Sep 2004 09:54:45 -0700 Received: (qmail 76420 invoked by uid 1209); 29 Sep 2004 16:54:44 -0000 Date: 29 Sep 2004 16:54:44 -0000 Message-ID: <20040929165444.76419.qmail@minotaur.apache.org> From: cutting@apache.org To: jakarta-lucene-cvs@apache.org Subject: cvs commit: jakarta-lucene CHANGES.txt X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N cutting 2004/09/29 09:54:44 Modified: . CHANGES.txt Log: Describe some recent changes. Revision Changes Path 1.113 +18 -2 jakarta-lucene/CHANGES.txt Index: CHANGES.txt =================================================================== RCS file: /home/cvs/jakarta-lucene/CHANGES.txt,v retrieving revision 1.112 retrieving revision 1.113 diff -u -r1.112 -r1.113 --- CHANGES.txt 28 Sep 2004 18:15:52 -0000 1.112 +++ CHANGES.txt 29 Sep 2004 16:54:44 -0000 1.113 @@ -66,7 +66,23 @@ missing, others duplicated) if the sort keys were not unique and there were more than 100 matches. (Daniel Naber) -14. Add native Directory implementation that works under GCJ. (cutting) +14. Add native Directory and TermDocs implementations that work under + GCJ. These require GCC 3.4.0 or later and have only been tested + on Linux. Use 'ant gcj' to build demo applications. (cutting) + +15. Add MMapDirectory, which uses nio to mmap input files. This is + still somewhat slower than FSDirectory. However it uses less + memory per query term, since a new buffer is not allocated per + term, which may help applications which use, e.g., wildcard + queries. It also should, in theory, someday be faster. A + downside is, due to limitations of the nio APIs, this does not + work with indexes containing files larger than 2^31 bytes. (cutting) + +16. Optimize the performance of certain uses of BooleanScorer, + TermScorer and IndexSearcher. In particular, a BooleanQuery + composed of TermQuery, with not all terms required, that returns a + TopDocs (e.g., through a Hits with no Sort specified) runs much + faster. (cutting) 1.4.1 --------------------------------------------------------------------- To unsubscribe, e-mail: lucene-dev-unsubscribe@jakarta.apache.org For additional commands, e-mail: lucene-dev-help@jakarta.apache.org