Pagination support on Search

Hello everyone,

I’m doing a search like this:

Searcher search = searchConn.search().limit(size).query(String.join(" ", terms) + “~2”);

Is there a way to define the page that I want to retrieve also? Something like:

Searcher search = searchConn.search().limit(size).page(3).query(String.join(" ", terms) + “~2”);

Thanks a lot.

Paging is not explicit but you can do it with the limit and offset arguments.

Jess

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.