My application is built on spring boot and is backed by Redis datastore. Currently I have a connection only to a single redis server and the properties of that server ( host / port ) is defined in bootstrap.yml.
I want to support multi-tenancy by using a separate Redis server for each customer. In order to do this I need to dynamically connect with various different redis server at runtime. Is it possible with RedisTemplate and JedisConnecitonFactory ?