Page 1 of 1
A little question..
Posted: Thu Oct 21, 2010 4:16 am
by guillermokiss
Hello everyone, can somebody tell me the correct wat to change the RAM amount the Gameserver Console uses? i'm doubt about change something there so i pretty assume that it's better asking to anyone who knows
Thanks in adavance.
Re: A little question..
Posted: Thu Oct 21, 2010 10:51 am
by jurchiks
startgameserver.bat/sh:
java -Djava.util.logging.manager=com.l2jserver.util.L2LogManager
-Xms1024m -Xmx1024m
xms - starting memory
xmx - maximum
xmn - minimum
you can also write 2g instead of 2048m
http://www.google.lv/search?q=jvm+memory+allocation
there are some limitations and suggested values, but that's not my field of expertise.
Re: A little question..
Posted: Thu Oct 21, 2010 12:09 pm
by guillermokiss
Ah, well thanks a lot jurchiks, will check this now
Re: A little question..
Posted: Thu Oct 21, 2010 1:20 pm
by poltomb
Moved. Please post in the appropriate section.
Re: A little question..
Posted: Thu Oct 21, 2010 3:38 pm
by Stake
Xmn is the maximum heap for young generation. It is used by garbage collector, and young generation is where the objects are stored. If an object survives several collection (in the so-called black list), then moved to tenured generation, if not, removed (from the so-called white list) with a full gc.