Return-Path: Delivered-To: apmail-lucene-java-user-archive@www.apache.org Received: (qmail 34147 invoked from network); 29 Jun 2009 13:16:47 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 29 Jun 2009 13:16:47 -0000 Received: (qmail 90003 invoked by uid 500); 29 Jun 2009 13:16:56 -0000 Delivered-To: apmail-lucene-java-user-archive@lucene.apache.org Received: (qmail 89912 invoked by uid 500); 29 Jun 2009 13:16:55 -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 89902 invoked by uid 99); 29 Jun 2009 13:16:55 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 29 Jun 2009 13:16:55 +0000 X-ASF-Spam-Status: No, hits=-0.0 required=10.0 tests=SPF_PASS X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of simon.willnauer@googlemail.com designates 209.85.210.182 as permitted sender) Received: from [209.85.210.182] (HELO mail-yx0-f182.google.com) (209.85.210.182) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 29 Jun 2009 13:16:45 +0000 Received: by yxe12 with SMTP id 12so1090558yxe.29 for ; Mon, 29 Jun 2009 06:16:24 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=googlemail.com; s=gamma; h=domainkey-signature:mime-version:received:reply-to:in-reply-to :references:date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=LaXIGV9apEDJXYh4borQa/+6+JYD5rMsZ1QR+LrDCSY=; b=nXS0AenzMS47cxPJehiDRBxdOTsSlOBWV40qzUsMLBAaPrwtMqc3xMh2gUUSfQGFct xbJLU+w+pki+s74iNLDbQ+wbG1I4YVFErteXu51MWp88BHzMxC0HtFozlIfYmJfdmNem W+Un+y/29Kja8XPpsDUPExjYMs56fBzddC3RA= DomainKey-Signature: a=rsa-sha1; c=nofws; d=googlemail.com; s=gamma; h=mime-version:reply-to:in-reply-to:references:date:message-id :subject:from:to:content-type:content-transfer-encoding; b=CTi8HanXmhFHGDCQfCfoCxIW/rot9hYiOuPb2gDoquQsKeY0pLBTI94h37C/N1t80l 9FLmEw0icyegfJ/h1q/j3+uv00y78olEKYStxqOOL6OkI7xgwJSBupPgliO63+Hem54b u+QxjtfsdH8GBmipKVOrQBHXQMS0iFtMpTBUw= MIME-Version: 1.0 Received: by 10.100.96.9 with SMTP id t9mr9111980anb.106.1246281384738; Mon, 29 Jun 2009 06:16:24 -0700 (PDT) Reply-To: simon.willnauer@gmail.com In-Reply-To: <24253760.post@talk.nabble.com> References: <24251993.post@talk.nabble.com> <24252732.post@talk.nabble.com> <24253338.post@talk.nabble.com> <24253583.post@talk.nabble.com> <24253760.post@talk.nabble.com> Date: Mon, 29 Jun 2009 15:16:24 +0200 Message-ID: Subject: Re: Read large size index From: Simon Willnauer To: java-user@lucene.apache.org Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-Virus-Checked: Checked by ClamAV on apache.org On Mon, Jun 29, 2009 at 3:07 PM, m.harig wrote: > > Thanks Simon , > > =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 This is how am indexing my documents , > > > =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0indexWriter.addDoc= ument(doc, new StopAnalyzer()); > > > =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0indexWriter.setMer= geFactor(10); > > =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0indexWriter.setMax= BufferedDocs(100); > > =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0indexWriter.setMax= MergeDocs(Integer.MAX_VALUE); > > =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0indexWriter.setTer= mIndexInterval(128); > > =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0 =C2=A0indexWriter.setMax= FieldLength(10000); > > Do i need improve on this ?? As you said, the problem occurs when you search right?! so for now I would not care about indexing too much. > >>> Sorry man if you can not provide any details about how you search > > What it does mean ?? please let me know... What I want to know is how does you search look like, for instance: - do you sort on any field - which query do you use (e.g. wilidcard searches) And again, the source of the error is very important :) simon > -- > View this message in context: http://www.nabble.com/Read-large-size-index= -tp24251993p24253760.html > Sent from the Lucene - Java Users mailing list archive at Nabble.com. > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: java-user-unsubscribe@lucene.apache.org > For additional commands, e-mail: java-user-help@lucene.apache.org > > --------------------------------------------------------------------- To unsubscribe, e-mail: java-user-unsubscribe@lucene.apache.org For additional commands, e-mail: java-user-help@lucene.apache.org