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;

}

这里可以按自己的需要重新封装Document和Field的数据。startIndex和endIndex标定了当前页面的范围。

转自:http://blog.csdn.net/jinhuiyu/archive/2008/12/17/3535358.aspx

你可能感兴趣的:(.net,Blog,Lucene)