We have a spring boot application that waits for asynchronous data from multiple server.
The spring boot application listens to these asynchronous resposes from mulitple servers and process it store it in redis database.
We are facing performace issue when the processing of data is slow and there is a huge queue of thousands or million messaged to be proccessed.
We want to understand can we do anything in our spring boot application to improve the processing and storing the data in redis.
I am expecting some solution in spring boot code to improve performace.