I have redis cache with structure as below
private HashOperations<String, Long, Object> hashOperations;//put data in cachehashOperations.put("Key", 1, SomeObject);
I need to fetch data from the cache with pagination( first page 50 results, second page next 50 results and so on). How can this be implemented with spring data redis. Any help is appreciated.