We have a springboot application deployed in kubernetes with 4 pods. Now we want to maintain cache of a specific value using spring cache. Based on a specific event we need to update the cache value, but as the application is deployed on multiple instances, is there a way we can update the cache value on all the instances. I am aware this can be achieved if we use some centralized cache mechanism like Redis, but we are not yet there to integrate it. So is there a work around to achieve this?
Thanks in advance