Reputation: 33
We have developed an application using Springboot and used Springboot cache as well as Caffeine cache to reduce DB calls and improve performance, But we are thinking cache size may occur problem so kindly help us to know how much cache will work fine?
Note :
Upvotes: 2
Views: 1770
Reputation: 550
Check your free resources when the project is running on the server and allocate the right amount of free resources to maximum size, do not worry about filling the RAM because there is a recycling strategy that manages when the space is full.
The following article describes the types of strategies: Recycling strategy
Upvotes: 3