You are viewing a plain text version of this content. The canonical link for it is here.
Posted to general@lucene.apache.org by lampa24 <Kr...@gmail.com> on 2012/02/17 20:29:13 UTC

sort in prefixQuery

Hello,
I use lucene. I indexed documents with two fields. First field is name and
second field is count. I use this index for autocomplete. I need find 10
names by prefix and the higest count.
I use code like this :
	
Sort sort = new Sort(new SortField("countfieldname", SortField.INT,true));
PrefixQuery pq = new PrefixQuery(new Term("namefieldname", "prefix"));
indexSearcher.Search(pq,null,10, sort);

But it doesn't work . I get unsorted results. 

--
View this message in context: http://lucene.472066.n3.nabble.com/sort-in-prefixQuery-tp3754696p3754696.html
Sent from the Lucene - General mailing list archive at Nabble.com.