Hello.

I only have one term, this is the sample code (where sortfield is a
fields that has been indexed):

hits = searcher.search(query, new Sort(sortField, false)); 


you mention Field.Keyword, what is that.

Mats

-----Oprindelig meddelelse-----
Fra: Erik Hatcher [mailto:[EMAIL PROTECTED] 
Sendt: 14. juli 2004 01:29
Til: Lucene Users List
Emne: Re: lucene sort error - there are more terms than documents in
field ....


On Jul 13, 2004, at 7:10 PM, MATL (Mats Lindberg) wrote:

> Hello.
>
> I am using:
> import org.apache.lucene.search.Sort
>
>  when searching an index, but for some reasons, in some indexes i get 
> this error:
>
> caught a class java.lang.RuntimeException  with message: there are 
> more terms than documents in field <TheFieldIAmSortingBy>
>
> does anybody know what causes this, or how to solve it.

You may only have a single term for each document.  How is the field
indexed you're sorting by?  Field.Keyword is the only guaranteed safe
one, and your analyzer will determine how the other fields are treated.

        Erik


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to