Return-Path: Delivered-To: apmail-lucene-java-dev-archive@www.apache.org Received: (qmail 3519 invoked from network); 10 May 2006 07:13:28 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 10 May 2006 07:13:28 -0000 Received: (qmail 34387 invoked by uid 500); 10 May 2006 07:13:25 -0000 Delivered-To: apmail-lucene-java-dev-archive@lucene.apache.org Received: (qmail 34349 invoked by uid 500); 10 May 2006 07:13:24 -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 34338 invoked by uid 99); 10 May 2006 07:13:24 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 10 May 2006 00:13:24 -0700 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received-SPF: neutral (asf.osuosl.org: local policy) Received: from [169.229.70.167] (HELO rescomp.berkeley.edu) (169.229.70.167) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 10 May 2006 00:13:23 -0700 Received: by rescomp.berkeley.edu (Postfix, from userid 1007) id 9E5CD5B764; Wed, 10 May 2006 00:13:00 -0700 (PDT) Received: from localhost (localhost [127.0.0.1]) by rescomp.berkeley.edu (Postfix) with ESMTP id 901C07F403 for ; Wed, 10 May 2006 00:13:00 -0700 (PDT) Date: Wed, 10 May 2006 00:13:00 -0700 (PDT) From: Chris Hostetter To: Lucene Dev Subject: RE: Multiple threads searching in Lucene and the synchronized issue. -- solution attached. In-Reply-To: Message-ID: References: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N : That is not my understanding. My understanding is that volatile just ensures : the JIT always accesses the var in order - prevents some compiler : optimizations - where as synchronized needs to acquire the lock. (There were : discussions regarding having volatile create synchronized accessors behind : the scenes - but I don't think that semantic was ever agreed upon). : : That coupled with using primitives (to avoid the early memory alloc - since : primitives are allocated on the stack), allows the double-locked : synchronization to work (at least that is my understanding). perhaps, I'm not expert i was just going based on what i've read, and aparently i forgot to paste the URL in my last email... http://www.cs.umd.edu/~pugh/java/memoryModel/jsr-133-faq.html#dcl : -----Original Message----- : From: Chris Hostetter [mailto:hossman_lucene@fucit.org] : Sent: Wednesday, May 10, 2006 12:51 AM : To: Lucene Dev : Subject: RE: Multiple threads searching in Lucene and the synchronized : issue. -- solution attached. : : : : : I think you could use a volatile primitive boolean to control whether or : not : : the index needs to be read, and also mark the index data volatile and it : : SHOULD PROBABLY work. : : : : But as stated, I don't think the performance difference is worth it. : : My understanding is: : 1) volatile will only help as of java 1.5 ... lucene targets 1.4 : compatibility. : 2) in 1.5, volatile is basically just as expensive as synchronized. : : : I met these problem before indeed.The compiler did something optimized for : : me that was bad for me when I see the byte-codes. : : When I'm using a function local variable, m_indexTerms and in JDK1.5.06, : it : : seems ok. : : Whether it will break in other environments, I still don't know about it. : : The dangerous thing is that even if the byte code looks okay, and if it : works okay today, your app could run for a while and then all of the : sudden it could stop working because of the order the threads are run, or : becuase of an optimization the JVM applies on the fly. -Hoss --------------------------------------------------------------------- To unsubscribe, e-mail: java-dev-unsubscribe@lucene.apache.org For additional commands, e-mail: java-dev-help@lucene.apache.org