Return-Path: Delivered-To: apmail-lucene-java-dev-archive@www.apache.org Received: (qmail 80887 invoked from network); 18 Jul 2008 22:26:26 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 18 Jul 2008 22:26:26 -0000 Received: (qmail 23580 invoked by uid 500); 18 Jul 2008 22:26:22 -0000 Delivered-To: apmail-lucene-java-dev-archive@lucene.apache.org Received: (qmail 23532 invoked by uid 500); 18 Jul 2008 22:26:22 -0000 Mailing-List: contact java-dev-help@lucene.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: java-dev@lucene.apache.org Delivered-To: mailing list java-dev@lucene.apache.org Received: (qmail 23492 invoked by uid 99); 18 Jul 2008 22:26:22 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 18 Jul 2008 15:26:22 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 18 Jul 2008 22:25:37 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id C132E234C174 for ; Fri, 18 Jul 2008 15:25:31 -0700 (PDT) Message-ID: <1521617774.1216419931790.JavaMail.jira@brutus> Date: Fri, 18 Jul 2008 15:25:31 -0700 (PDT) From: "Michael McCandless (JIRA)" To: java-dev@lucene.apache.org Subject: [jira] Commented: (LUCENE-1339) Add IndexReader.acquire() and release() methods using IndexReader's ref counting In-Reply-To: <1115504839.1216387351872.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/LUCENE-1339?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12614898#action_12614898 ] Michael McCandless commented on LUCENE-1339: -------------------------------------------- Thanks Andi. What would you think of just exposing incRef() & decRef() as expert public methods? -- Yonik suggested this on java-dev. We would just add ensureOpen() to those methods and make them public. > Add IndexReader.acquire() and release() methods using IndexReader's ref counting > -------------------------------------------------------------------------------- > > Key: LUCENE-1339 > URL: https://issues.apache.org/jira/browse/LUCENE-1339 > Project: Lucene - Java > Issue Type: New Feature > Reporter: Andi Vajda > Fix For: 2.3.2 > > Attachments: lucene-1339.patch > > > From: http://mail-archives.apache.org/mod_mbox/lucene-java-dev/200807.mbox/%3cPine.OSX.4.64.0807170752080.1708@c5850-a3-2-62-147-22-102.dial.proxad.net%3e > I have a server where a bunch of threads are handling search requests. I > have a another process that updates the index used by the search server and > that asks the searcher server to reopen its index reader after the updates > completed. > When I reopen() the index reader, I also close the old one (if the reopen() > yielded a new instance). This causes problems for the other threads that > are currently in the middle of a search request. > I'd like to propose the addition of two methods, acquire() and release() > (attached to this bug report), that increment/decrement the ref count that IndexReader > instances currently maintain for related purposes. That ref count prevents > the index reader from being actually closed until it reaches zero. > My server's search threads, thus acquiring and releasing the index reader > can be sure that the index reader they're currently using is good until > they're done with the current request, ie, until they release() it. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online. --------------------------------------------------------------------- To unsubscribe, e-mail: java-dev-unsubscribe@lucene.apache.org For additional commands, e-mail: java-dev-help@lucene.apache.org