My java app is running out of memory after a while. So I am trying to find the most suitable way to manage the cache size. I do have the problem, that my cube is growing big if I don't clear memory with LRU principle. How do you manage the cache size of you java vm?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
At the moment I can set the parameters |
|||
|
|
|
I actually never solved to problem completely and I am not 100% satisfied with the current status, but anyways here is my current solution. The system uses shared cache between sessions, so the memory which got allocated in the sessions gets cleared after session-end but the memory in the shared cache stays allocated. A combination of the different parameters mentioned before + a quicker iteration of the garbage collector after each call of the memory operations works, at least, ok. |
|||
|
|