ashwin1209
ashwin1209

Reputation: 21

Spring data elasticsearch-from/size

how to set from/size of search result executed using spring Elasticsearchtemplate.

how to set from and size parameters using elasticsearchtemplate.

Upvotes: 2

Views: 3038

Answers (2)

Max Guenes
Max Guenes

Reputation: 1

Unfortunately, this feature is not available in spring data framework yet.

Link: https://jira.spring.io/browse/DATAES-187&usg=ALkJrhhjX4MjwaEWTnG5v-qucDQBlqVWXg

Upvotes: 0

undefined_variable
undefined_variable

Reputation: 6218

you can use PageRequest . Details can be found at Spring Data Elasticsearch

you can refer Example 2. PagingAndSortingRepository from doc

Upvotes: 1

Related Questions