Caching does not work if offset and limit are used in a query

2022-07-07 Thread Rishi Agr
Hi, I have created a view and the query on it has the pagination implementation. The search on this view returns more than one page of data and I would like to cache this. I've observed that the cache does not work as expected if I have the offset and limit in the query. Also, if I change the page

Re: Caching does not work if offset and limit are used in a query

2022-07-08 Thread Nicolas Malin
Hello Rishi, Check with an EntityListIterator instead of a List, like it already done with performFind service and Form list. You extract from the data base only the segment needed through a database pointer. Nicolas On 08/07/2022 08:30, Rishi Agr wrote: > Hi, I have created a view and the quer