We use a software panel at our company to manage all of our game servers. There is a feature in it to turn on Low Memory Usage. I have never used it, but as some newer Java games are absolute RAM hogs, I have been investigating it. I have written a Daemon application to manage these processes, and would like to find out more about releasing unused RAM so that I can do this when no players are currently connected.
Here is the description the developers of the software panel gave me for the feature...
As we all know gameservers are not designed to streamline RAM usage. Normally a game will take whatever RAM it needs to startup and simply hold onto that RAM amount.
The low memory feature simply releases any unused RAM at timed intervals. Then if the game requires the RAM again it will grab it. This is an old feature that was designed to work primarily with Q3 based games. However it is possible that others games may benefit from it as well.
I would say turn it on for one server and see what happens. Of course there are no guaratees that it will not cause issues with the game.
How are they going about doing this with C# .NET? I am launching the Java processes from a .NET executable and managing it from there, so worst cases scenario it would be worth giving it a shot.