Re: HTML Parsing problems...

2003-09-19 Thread Michael Giles
Tatu, Thanks for the reply. See below for comments. > just ignore everything inside of

some requests

2003-09-19 Thread hui
Hi, I am wondering whether we could do some changes for the feature Lucene. 1. Move the Analyzer down to field level from document level so some fields could be applied a specail analyzer.Other fields still use the default analyzer from the document level. For example, I do not need to index the nu

NewBie

2003-09-19 Thread Sethi, Mandeep
Hi Fundu People I'm a newbie in this and hence please bear with my FADQ(D==Dumb)(I'm for some reasons not able to download the lucene-user Digest till now) The demo I tried from apache performs the search from command line well however it gives a list of null results when we try to load it from

RE: cant rename segments.new to segment

2003-09-19 Thread Wilton, Reece
This occurs for me on Windows XP when the mergefactor is low or when there is more than one reader or writer open. Try increasing the mergefactor. Also, don't open and close the writer after each document. Open the writer once, index all your docs and then close the writer. You'll have much bette

RE: cant rename segments.new to segment

2003-09-19 Thread Wilton, Reece
Are people having this same issue on Linux or is this just a Windows issue? -Original Message- From: Rociel Buico [mailto:[EMAIL PROTECTED] Sent: Thursday, September 18, 2003 11:51 PM To: [EMAIL PROTECTED] Subject: cant rename segments.new to segment all, when i'm trying to run my index

Re: cant rename segments.new to segment

2003-09-19 Thread Bruce Ritchie
Wilton, Reece wrote: Are people having this same issue on Linux or is this just a Windows issue? I've only heard of the issue on Windows - I believe a patch from Matt Tucker was actually incorporated into Lucene that made some attempt to work around this issue. Regards, Bruce Ritchie smime.p7

Re: some requests

2003-09-19 Thread Erik Hatcher
On Friday, September 19, 2003, at 11:15 AM, hui wrote: 1. Move the Analyzer down to field level from document level so some fields could be applied a specail analyzer.Other fields still use the default analyzer from the document level. For example, I do not need to index the number for the "conte

Re: HTML Parsing problems...

2003-09-19 Thread Erik Hatcher
I'm going to swap in the neko HTML parser for the demo refactorings I'm doing. I would be all for replacing the demo HTML parser with this. If you look at the Ant task in the sandbox, you'll see that I used JTidy for it and it works well, but I've heard that neko is faster and better so I'

Re: cant rename segments.new to segment

2003-09-19 Thread Rociel Buico
i have downloaded the lucene-20030909.jar and its ok now, but i have to stress test my application first. btw, im running it on windows 2000 cheers, buics Bruce Ritchie <[EMAIL PROTECTED]> wrote: Wilton, Reece wrote: > Are people having this same issue on Linux or is this just a Windows > is

create a getQuery in the Hits Class

2003-09-19 Thread Nicolas Maisonneuve
hy , in the Hits class , we have a query proporty but no public method to get it.. it would great if you add this public final Query getQuery() { return this.query; }