Another MultiFieldQueryParser question...

2007-01-15 Thread Jiho Han
r parser = new MultiFieldQueryParser(searchFields, new StandardAnalyzer()); parser.SetDefaultOperator(QueryParser.Operator.OR); Query query = parser.Parse(querystring); Then I pass 'query' into MultiSearcher. Well, it's not returning the results as I expect.

RE: Another MultiFieldQueryParser question...

2007-01-16 Thread Jiho Han
stion... "Jiho Han" <[EMAIL PROTECTED]> wrote on 15/01/2007 10:50:14: > I looked through the archive a bit and found some Q & A's regarding > this but I didn't see anything definitive so I thought I'd ask again... > > Basically, I have a web pag

RE: Another MultiFieldQueryParser question...

2007-01-17 Thread Jiho Han
If you haven't, I'd strongly recommend getting a copy of Luke (google lucene luke) and use it to examine your index. I've found it quite useful for getting a handle on similar questions Best Erick On 1/16/07, Jiho Han <[EMAIL PROTECTED]> wrote: > > Thanks for the i

RE: Another MultiFieldQueryParser question...

2007-01-17 Thread Jiho Han
uring indexing, assuming StandardAnalyzer implementation will always lowercase its query values. Thanks everyone for your inputs! Jiho -Original Message- From: Jiho Han [mailto:[EMAIL PROTECTED] Sent: Wednesday, January 17, 2007 12:07 PM To: java-user@lucene.apache.org Subject: RE: An

Searching/indexing date/time values or numeric values?

2007-01-17 Thread Jiho Han
n that order. And if I do VERSION:[1.0 TO 3.0], search would return all 3 of them. The only workaround seems to be prepending 0's and that would also only work as long as the maximum digits for the interger part is known ahead of time. Can someone verify/suggest ways to make this work? Than