skip to Main Content

Inheritance in application properties in spring boot redis configuration

I have application.properties and application-dev.properties. In my application.properties (single node instance) spring.redis.host=127.0.0.1 spring.redis.port=6379 And in my application-dev.properties (since i have cluster set up in dev env) spring.redis.cluster.nodes=10.212.41.20:6379, 10.292.40.291:6379 Now since spring.redis.host is not present in dev profile property file it…

VIEW QUESTION

Redis Functionality

I am trying to use redis for a simple process. Process :- Read value for a key and update it. Example :- (a,1) Read a value and update 1 to 2. The problem here is that in multithreaded environment ,multiple…

VIEW QUESTION
Back To Top
Search