Loading a large index

2005-01-28 Thread Edwin Tang
I have three indices really that I search via ParallelMultiSearcher. All three are being updated constantly. We would like to be able to perform a search on the indices and have the results reflect the latest documents indexed. However, that would mean I need to refresh my searcher. Because of the

Re: Need help with filtering

2004-11-22 Thread Edwin Tang
[EMAIL PROTECTED] wrote: On Wednesday 17 November 2004 01:20, Edwin Tang wrote: Hello, I have been using DateFilter to limit my search results to a certain date range. I am now asked to replace this filter with one where my search results have document IDs greater than a given

Re: Need help with filtering

2004-11-17 Thread Edwin Tang
Ah... recoding DateFilter. I will look into this today. Thanks for the help. Ed --- Paul Elschot [EMAIL PROTECTED] wrote: On Wednesday 17 November 2004 01:20, Edwin Tang wrote: Hello, I have been using DateFilter to limit my search results to a certain date range. I am now asked

Re: BooleanQuery - TooManyClauses Issue

2004-11-16 Thread Edwin Tang
This is what I have been doing with DateFilter DateFilter dateFilter = new DateFilter(published, lLimitDate, System.currentTimeMillis()); TopFieldDocs docs = searcher.search(parser.parse(sSearchPhrase), dateFilter, utility.iMaxResults, new Sort(sortFields)); Ed --- Luke Francl [EMAIL

Need help with filtering

2004-11-16 Thread Edwin Tang
Hello, I have been using DateFilter to limit my search results to a certain date range. I am now asked to replace this filter with one where my search results have document IDs greater than a given document ID. This document ID is assigned during indexing and is a Keyword field. I've browsed

Re: Orphan segment files

2004-10-04 Thread Edwin Tang
exceptions as mentioned above. The only other thing I can think of that may cause this is if someone shuts the indexer application down while optimization is taking place. Thanks again, Ed --- Dmitry Serebrennikov [EMAIL PROTECTED] wrote: Edwin Tang wrote: Hello, I am running on Windows XP

Re: Orphan segment files

2004-10-03 Thread Edwin Tang
are you running? At some point during the past two months there were a few days when CVS snapshot would have had this problem. If you are running from CVS, try the latest release and see if this occurs again. Dmitry. Edwin Tang wrote: Hello, I'm seeing in my index directory some

Memory leak in ParallelMultiSeacher?

2004-10-01 Thread Edwin Tang
Hello,   I ran across this post (http://java2.5341.com/msg/77213.html) in the mailing list archives, and wondering if anyone has any updates on this? Thanks, Ed __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around

Orphan segment files

2004-09-29 Thread Edwin Tang
Hello, I'm seeing in my index directory some segment files that are not included in the segments or deletable files. These segment files show their last modified date to be anywhere between a couple of days ago to a few weeks ago. I'm wondering why these files are not contained inside segments

Questions related to closing the searcher

2004-09-24 Thread Edwin Tang
Message- From: Edwin Tang [mailto:[EMAIL PROTECTED] Sent: Wednesday, September 22, 2004 11:38 AM To: [EMAIL PROTECTED] Subject: Fwd: Questions related to closing the searcher Hello, In my testing, it seems like if the searcher (in my case ParallelMultiSearcher) is not closed

Fwd: Questions related to closing the searcher

2004-09-22 Thread Edwin Tang
Hello, In my testing, it seems like if the searcher (in my case ParallelMultiSearcher) is not closed, the searcher will not pick up any new data that has been added to the index since it was opened. I'm wondering if this is a correct statement. Assuming the above is true, I went about closing