Re: Possible memory issue?

2006-10-26 Thread d rj
I would suggest checking that close() is properly called for all IndexSearcher/Reader/Writer objects when doing adds/deletes and when recreating IndexSearcher object. Free memory in the JVM heap can diminish quickly if these objects aren't properly disposed. -drj On 10/26/06, Aigner, Thomas < [EM

question regarding usage of IndexWriter.setMaxFieldLength()

2006-10-18 Thread d rj
Hello- I was wondering about the usage of IndexWriter.setMaxFieldLength() it is limited, by default, to 10k terms per field. Can anyone tell me if this is this a "per field" limit or a "per uniquely named field" limit? I.e. in the following snippet I add many words to different Fields all w/ the

Re: how to write this regexps?

2006-08-29 Thread d rj
I would recommend using the open source project HTMLParser ( http://htmlparser.sourceforge.net/). It provides an excellent API for parsing html files and extracting the relevant text. -drj On 8/29/06, James liu <[EMAIL PROTECTED]> wrote: i wanna index html,,,but it have image,flash,javascript,

Re: Sharing Documents between Lucene and DotLucene

2006-08-28 Thread d rj
wanted to post to the group to know if schema descriptors for Lucene Documents already exists or if anyone has employed some other successful technique for transferring Documents from Lucene to Lucene.Net. Thanks. -drj On 8/28/06, Erik Hatcher <[EMAIL PROTECTED]> wrote: On Aug 28, 2006,

Re: Sharing Documents between Lucene and DotLucene

2006-08-28 Thread d rj
to hear more of a rationale for this. Erik On Aug 26, 2006, at 8:06 AM, d rj wrote: > George. > > I am wondering if there is a way to share Document objects between > Lucene > and Lucene.Net. In this client/server structure sharing the same > physical > index directo

Re: Sharing Documents between Lucene and DotLucene

2006-08-26 Thread d rj
ds, -- George Aroush -Original Message- From: d rj [mailto:[EMAIL PROTECTED] Sent: Friday, August 25, 2006 5:33 PM To: java-user@lucene.apache.org Subject: Sharing Documents between Lucene and DotLucene Hello- I am just wondering if any one has encountered any good strategies for sharing sea

Sharing Documents between Lucene and DotLucene

2006-08-25 Thread d rj
Hello- I am just wondering if any one has encountered any good strategies for sharing search records between a Linux based server using Lucene and a Windows based client using DotLucene. I am doing all the indexing on the server ( i.e. the master index is contained on the server) and I would lik