Return-Path: X-Original-To: apmail-lucene-dev-archive@www.apache.org Delivered-To: apmail-lucene-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 12AAB9E83 for ; Wed, 14 Dec 2011 09:05:10 +0000 (UTC) Received: (qmail 69745 invoked by uid 500); 14 Dec 2011 09:05:07 -0000 Delivered-To: apmail-lucene-dev-archive@lucene.apache.org Received: (qmail 69363 invoked by uid 500); 14 Dec 2011 09:05:07 -0000 Mailing-List: contact dev-help@lucene.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@lucene.apache.org Delivered-To: mailing list dev@lucene.apache.org Received: (qmail 69302 invoked by uid 99); 14 Dec 2011 09:05:02 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 14 Dec 2011 09:05:02 +0000 X-ASF-Spam-Status: No, hits=-2001.5 required=5.0 tests=ALL_TRUSTED,RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.116] (HELO hel.zones.apache.org) (140.211.11.116) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 14 Dec 2011 09:04:52 +0000 Received: from hel.zones.apache.org (hel.zones.apache.org [140.211.11.116]) by hel.zones.apache.org (Postfix) with ESMTP id A42C0111895 for ; Wed, 14 Dec 2011 09:04:30 +0000 (UTC) Date: Wed, 14 Dec 2011 09:04:30 +0000 (UTC) From: "Uwe Schindler (Updated) (JIRA)" To: dev@lucene.apache.org Message-ID: <1652836941.10229.1323853470673.JavaMail.tomcat@hel.zones.apache.org> In-Reply-To: <1730840950.12991.1319545113180.JavaMail.tomcat@hel.zones.apache.org> Subject: [jira] [Updated] (LUCENE-3531) Improve CachingWrapperFilter to optionally also cache acceptDocs, if identical to liveDocs MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/LUCENE-3531?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Uwe Schindler updated LUCENE-3531: ---------------------------------- Attachment: LUCENE-3531-identityFix.patch Here an improved patch factoring out the wrapper object to o.a.l.util, adding tests. Once this is committed, I will review other code and maybe move to this wrapper class (e.g. MMapIndexInput's cloned inputs) > Improve CachingWrapperFilter to optionally also cache acceptDocs, if identical to liveDocs > ------------------------------------------------------------------------------------------ > > Key: LUCENE-3531 > URL: https://issues.apache.org/jira/browse/LUCENE-3531 > Project: Lucene - Java > Issue Type: Improvement > Components: core/search > Affects Versions: 4.0 > Reporter: Uwe Schindler > Assignee: Michael McCandless > Fix For: 4.0 > > Attachments: LUCENE-3531-identityFix.patch, LUCENE-3531-identityFix.patch, LUCENE-3531.patch > > > Spinoff from LUCENE-1536: This issue removed the different cache modes completely and always applies the acceptDocs using BitsFilteredDocIdSet.wrap(), the cache only contains raw DocIdSet without any deletions/acceptDocs. For IndexReaders that are seldom reopened, this might not be as performant as it could be. If the acceptDocs==IR.liveDocs, those DocIdSet could also be cached with liveDocs applied. -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscribe@lucene.apache.org For additional commands, e-mail: dev-help@lucene.apache.org