I have a web application where I use a relational database and Redis for storing my key/value pairs. I am using Spring Data Redis in my DAO methods to access Redis collections. The problem is that having many Redis collections in the application makes it really difficult to manage them. I believe that each collection should be accessed from one single place only i.e writes and reads for one collection should be centralized, but that is not the case in my app currently. So I would like to come up with a proper and encapsulated access mechanism for all my Redis collections.
How should I structure my app to accomplish this?
Have a look at
org.springframework.data.redis.core.RedisTemplate
class. a generic template to access all redis provided data structure