[java] Server JVM

Started by
1 comment, last by cpp_boy 18 years, 10 months ago
Hello java fans :) I'm running VERY big java project on my PC , wich requires about 300MB of RAM. I'm having problems with memory overflow (My PC have enough RAM). If I'll install server jvm on my PC, will I solve memory overflow problem. As I understand, standard JVM memory resources are very limited. Yes,...., and is there such thing as server jvm for PC ? THANKS.
Advertisement
Use "-Xmx512m" flag to use at most 512Mb ram
and
the server vm is already there prolly (if you have jdk): use "-server" flag
Quote:Original post by Lotuspec
Use "-Xmx512m" flag to use at most 512Mb ram
and
the server vm is already there prolly (if you have jdk): use "-server" flag


THANKS ;-)

This topic is closed to new replies.

Advertisement