I have two Java programs. On my computer, one of them uses 9MB of RAM and the other uses 77MB. But when I upload them to a server, the same programs use 382MB and 186MB! Is there a way to stop this from happening?
|
|
|||
|
|
|
It is quite common for applications to allocate virtual memory in large chunks to improve performance and efficiency. Nobody bothers to optimize such things because they have no effect. If you don't actually have a problem, there's nothing to fix. Virtual memory is not a scarce resource. Attempting to reduce the consumption of vm is wasted effort. |
|||||||||||||
|
|
How did you measure that numbers? Comparing the numbers of Windows Task Manager and ps(1) on Linux is futile because they are computed differently. For example shared libraries and shared memory are attributed differently on both platforms. Also the memory management is completely different. If, on the other hand, you refer to numbers gathered from within your apps via Related to point 1: Linux: How to measure actual memory usage of an application or process? |
|||
|
|
|
Unless you've explicitly set it (e.g command line arguments like -Xmx128M), the default maximum heap size of the JVM depends on the amount of RAM available. |
||||
|
|