Re: Sorting in Lucene

2004-12-08 Thread Erik Hatcher
On Dec 8, 2004, at 5:02 PM, Ramon Aseniero wrote: Yes I am indexing multiple keyword fields by the same name in a single document. Does that works with Lucene? No - logically it doesn't make sense. How would Lucene determine which of those field values to sort by? You need a single field value t

RE: Sorting in Lucene

2004-12-08 Thread Ramon Aseniero
List Subject: Re: Sorting in Lucene Ramon, More details would be most helpful in being able to assist. You said you cannot sort - but you did not tell us what error you're getting. Are you indexing multiple keyword fields by the same name for a single document? As for searching - dependi

Re: Sorting in Lucene

2004-12-07 Thread Erik Hatcher
a match. I tried the search using LIMO and LUKE. It seems like untokenized field are not searchable. Thanks, Ramon -Original Message- From: Chuck Williams [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 07, 2004 4:04 PM To: Lucene Users List Subject: RE: Sorting in Lucene Since it&#x

RE: Sorting in Lucene

2004-12-07 Thread Chuck Williams
2004 4:14 PM > To: 'Lucene Users List' > Subject: RE: Sorting in Lucene > > Hi Chuck, > > Yes I tried to search with the exact string stored on the index but I > don't > get a match. I tried the search using LIMO and LUKE. > > It

RE: Sorting in Lucene

2004-12-07 Thread Ramon Aseniero
esday, December 07, 2004 4:04 PM To: Lucene Users List Subject: RE: Sorting in Lucene Since it's untokenized, are you searching with the exact string stored in the field? Chuck > -Original Message- > From: Ramon Aseniero [mailto:[EMAIL PROTECTED] > Sent: Tuesday, Decemb

RE: Sorting in Lucene

2004-12-07 Thread Chuck Williams
December 07, 2004 3:20 PM > To: 'Lucene Users List'; 'Chris Fraschetti' > Subject: RE: Sorting in Lucene > > Hi, > > I use LIMO to look into my index. Limo tells me that the field is > untokenized but is indexed. > > Is it possible to search

RE: Sorting in Lucene

2004-12-07 Thread Ramon Aseniero
I also tried searching the said field on LIMO and I don’t get a match. Thanks, Ramon -Original Message- From: Ramon Aseniero [mailto:[EMAIL PROTECTED] Sent: Tuesday, December 07, 2004 3:20 PM To: 'Lucene Users List'; 'Chris Fraschetti' Subject: RE: Sorting in Lucene

RE: Sorting in Lucene

2004-12-07 Thread Ramon Aseniero
List Subject: Re: Sorting in Lucene I would try 'luke' to look at your index and use it's search functionality to make sure it's now your code that is the problem, as well as to ensure your document is appearing in the index as you intend it. It's been a lifesaver for m

Re: Sorting in Lucene

2004-12-07 Thread Chris Fraschetti
I would try 'luke' to look at your index and use it's search functionality to make sure it's now your code that is the problem, as well as to ensure your document is appearing in the index as you intend it. It's been a lifesaver for me. http://www.getopt.org/luke/ On Tue, 7 Dec 2004 15:02:26 -0

Sorting in Lucene

2004-12-07 Thread Ramon Aseniero
Hi All, Any idea why a Keyword field is not searchable? On my index I have a field of type Keyword but I could not somehow search on the field. Thanks in advance. Ramon -- No virus found in this outgoing message. Checked by AVG Anti-Virus. Version: 7.0.289 / Virus Database: 265.4.7 -

Re: Sorting in Lucene.

2004-11-05 Thread Vic (Vinny) Cekvenich
Erik Hatcher wrote: I covered sorting pretty extensively in the upcoming Lucene in Action book. The source code for the book will be freely available from http://www.manning.com/hatcher2 in the near future. The electronic book should be available in the next few weeks or less and the physica

Re: Sorting in Lucene.

2004-11-05 Thread Erik Hatcher
Subject: RE: Sorting in Lucene. Ramon, I'm not sure where a guide or tutorial might be, but you should be able to see how to do it from the javadoc. Look at classes Sort, SortField, SortComparator. I've also included a recent message from this group below concerning sorting with multiple fi

RE: Sorting in Lucene.

2004-11-04 Thread Ramon Aseniero
Hi chuck, Thanks a lot this is really helpful. Thanks, Ramon -Original Message- From: Chuck Williams [mailto:[EMAIL PROTECTED] Sent: Thursday, November 04, 2004 10:05 PM To: Lucene Users List Subject: RE: Sorting in Lucene. Ramon, I'm not sure where a guide or tutorial might be

RE: Sorting in Lucene.

2004-11-04 Thread Chuck Williams
operly, otherwise it will fall back to using a String sort. Erik - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] > -Original Message- > From: Ramon Aseniero [mailto:[EMAIL PROTECTED] > Sent: Thursday, Novem

RE: Sorting in Lucene.

2004-11-04 Thread Ramon Aseniero
Hi Chuck, Can you please point me to some articles or FAQ about Sorting in Lucene? Thanks a lot for your reply. Thanks, Ramon -Original Message- From: Chuck Williams [mailto:[EMAIL PROTECTED] Sent: Thursday, November 04, 2004 9:44 PM To: Lucene Users List Subject: RE: Sorting in

RE: Sorting in Lucene.

2004-11-04 Thread Chuck Williams
Yes, by one or multiple criteria. Chuck > -Original Message- > From: Ramon Aseniero [mailto:[EMAIL PROTECTED] > Sent: Thursday, November 04, 2004 6:21 PM > To: 'Lucene Users List' > Subject: Sorting in Lucene. > > Hi All, > > &

Sorting in Lucene.

2004-11-04 Thread Ramon Aseniero
Hi All, Does Lucene supports sorting on the search results? Thanks in advance. Ramon