Lucene分页方式(转)
推荐的做法是为每一次分页导航都执行一次新的 查询。因为Hits中保存的并不是真正的Document,因此可以通过HIts.doc(index)的方式取出在一定范围内的Document。在获 得Hits后可以用类似下面的方法进行分页处理:
private List processHits(Hits hits,int startIndex,int endIndex)throws Exception{if(endIndex>=hits.length())endIndex=hits.length()-1;List docs=new ArrayList();for(int i=startIndex;i<=endIndex;i++){Document doc=hits.doc(i);Map docMap=new HashMap();docMap.put(”id”,doc.getField(”id”).stringValue());docMap.put(”name”,doc.getField(”name”).stringValue());docMap.put(”price”,doc.getField(”price”).stringValue());docs.add(docMap);}return docs;}