Closed
Description
This issue is to add an item reader for Redis based on Spring Data Redis. The tricky part is how to define the set of keys that the reader should iterate over:
- KEYS/SCAN are the most obvious choices (as Spring Data Redis provides iterable cursor-based APIs for these commands)
- Provide a key for which the value is an iterable data structure (list, set, stream, etc) and make the reader return items from that value
This is key to correctly design and implement the item reader (or readers?) for Redis.