RE: field indexed but not stored

2004-06-24 Thread Ryan Sonnek
Message- > From: Erik Hatcher [mailto:[EMAIL PROTECTED] > Sent: Thursday, June 24, 2004 1:58 PM > To: Lucene Users List > Subject: Re: field indexed but not stored > > > On Jun 24, 2004, at 2:10 PM, Ryan Sonnek wrote: > > I'm using lucene-1.4-rc3 and trying to op

field indexed but not stored

2004-06-24 Thread Ryan Sonnek
I'm using lucene-1.4-rc3 and trying to optimize the size of our index and decrease search times. our index has several fields that we need to search and sort by, but only one field that we actually retrieve from the hits document. I tried creating all fields as unstored, except for the one I n

RE: Query parser and minus signs

2004-05-21 Thread Ryan Sonnek
if you're dealing with locales, why not use java's built in locale syntax (ex: en_UK, zh_HK)? > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > Sent: Friday, May 21, 2004 10:36 AM > To: [EMAIL PROTECTED] > Subject: Query parser and minus signs > > > > > > >

documentation fix for website

2004-05-20 Thread Ryan Sonnek
Is this the right place to submit a problem with the website documentation? http://jakarta.apache.org/lucene/docs/systemproperties.html lists mergeFactor twice with different property names. the second occurance should be updated to lockDir (the underlying href link is correct). Ryan ---

RE: multivalue fields

2004-05-11 Thread Ryan Sonnek
searchValue", "test", ANALYZER); query.add(fieldQuery, true, false); Ryan > -Original Message- > From: Otis Gospodnetic [mailto:[EMAIL PROTECTED] > Sent: Tuesday, May 11, 2004 11:31 AM > To: Lucene Users List > Subject: Re: multivalue fields > > > Just

RE: pagable results

2004-05-11 Thread Ryan Sonnek
CTED] > Sent: Tuesday, May 11, 2004 11:05 AM > To: Lucene Users List > Subject: RE: pagable results > > > I'd be curious what that 3rd party product is, if you are allowed to > share that. > > Otis > > --- Ryan Sonnek <[EMAIL PROTECTED]> wrote: > >

multivalue fields

2004-05-11 Thread Ryan Sonnek
How can I construct a document that has multiple values for one field (ex: locale en_US, de_DE, etc). I've been concatonating the values into one string and storing them in one field, but I think this affects the search rankings (more text to search produces lower score). is it possible to app

RE: pagable results

2004-05-11 Thread Ryan Sonnek
or putting together such a solid product! Ryan > -Original Message- > From: Erik Hatcher [mailto:[EMAIL PROTECTED] > Sent: Tuesday, May 11, 2004 10:31 AM > To: Lucene Users List > Subject: Re: pagable results > > > On May 11, 2004, at 9:58 AM, Ryan Sonnek wr

pagable results

2004-05-11 Thread Ryan Sonnek
When performing a search with lucene, is it possible to only return a subset of the results? I need to be able to page through results, and it seems much more efficient if I can tell the searcher, "only return results 50 - 100", rather than performing the full search. Ryan ---

sorting

2004-05-06 Thread Ryan Sonnek
I've been searching around for information on how to sort a lucene search. could someone point me in the right direction? Ryan