I am using Redis to store JSON data with a model that has Id and Name fields. My goal is to implement cursor pagination over this data using the Name as the cursor. I realize this isn't unique and I'll need to do some additional work to resolve the issues presented by that using that particular field as the cursor. However I am struggling to find a way to even begin to implement a basic cursor pagination with Redis commands. Redis has options for various string operations using the "Search" module but these are limited to search within a given string, nothing with comparisons. Am I barking up the wrong tree here and cursor pagination is not possible? Or is there something fundamental I am missing in my design?