-
Nerd-IO
-
-
Black Magic Development
Re: Xtrem RAM consumption by Authd and Jetty
Java's garbage collector is weird, if the application needs more RAM it either just allocates more or if it hit that limit then it cleans things up, but if it can allocate more RAM it won't garbage collect. Java also doesn't release RAM until application termination after it has been allocated. Java is great and all but I never understood why Sun decided to do that...
Last edited by das7002; 01-08-11 at 10:37 PM.
-
Nerd-IO
Re: Xtrem RAM consumption by Authd and Jetty
There is no way to limit the used ram used by java and/or the processes?
-
Nerd-IO
Re: Xtrem RAM consumption by Authd and Jetty
Fixed. See the first post.
-
Member
Re: Xtrem RAM consumption by Authd and Jetty
I use a cache cleaner, if I clear the cache reaches the whole memory consumption, clean and back to normal, every x hours.
-
Angelemu founder
Re: Xtrem RAM consumption by Authd and Jetty
Having a restart loop and killing the authd every 10 min also solves a lot of problems :D
Btw 128m is more than enough, as it very rarely goes beyond 32m
-
Nerd-IO
Re: Xtrem RAM consumption by Authd and Jetty
Using 128m for authd and 32m for jetty
Thanks for the infos anubis!