I want have a setup of redis where I write to master and read from slave, without any sentinel.
I can see spring does have an article for above here :
I am using @Cacheable
annotation for caching, where do I specify that read should happen from master and write from slave?
The write-to-master/read-from-slave is implemented in the lettuce redis client. It is transparent to your application code