我想id
DESClucene只能排序和搜索沒有?
Sort sort = new Sort(new SortField[]{new SortField("id",SortField.INT,true)});
TopDocs topDocs=indexSearch.search(null,null,10,sort);//no need Query,only sort
...
我得到了500異常,因爲查詢參數爲空
我怎樣才能實現它的最好的方式列出最新的10行的次序?
BTW:id
字段是NumericField,編寫使用:
new NumericField("id",Integer.MAX_VALUE,Field.Store.YES,true)
+ 1,冷靜,我從來不知道它 – Koerr
之前,你可以看看我的另一個Lucene的問題嗎?感謝http://stackoverflow.com/questions/10464377/in-this-lucene-case-using-booleanquery-or-write-more-indexes – Koerr