I am using the Redis Hash, in which I am storing student id as the key (which is not numeric), the value is POJO of student data. now I need redis-pagination i.e. I don't care about the students' order but I want to fetch only some students data in one go. can I do this in Redis? if for supporting the pagination some modification in the data structure is required that would be ok too.
P.S. I am using spring-data-redis. but the solution without it would be ok too. basically, I want to find out whether redis supports pagination for hashes.