4
我在嘗試計算全文搜索文檔的總行數。在Google documentation出現表達計數(大小),但我不明白它的工作。Google appengine全文搜索的總次數
我正在Java工作。
有沒有關於如何使用'count'表達式的例子?
我在嘗試計算全文搜索文檔的總行數。在Google documentation出現表達計數(大小),但我不明白它的工作。Google appengine全文搜索的總次數
我正在Java工作。
有沒有關於如何使用'count'表達式的例子?
試試這個:
public void countRows() {
GetRequest request = GetRequest.newBuilder().setReturningIdsOnly(true)
.build();
int totalResult = (int) INDEX.getRange(request).getResults().size();
}
您必須聲明:
private Index INDEX = SearchServiceFactory.getSearchService().getIndex(
IndexSpec.newBuilder().setName("your_doc_name"));
需要注意的是:它的更好,如果你不計算行。對於分頁,它應該是next和previuos頁面鏈接。對不起,如果我的英語不好。
你能想出來嗎?我正在尋找相同的。 –