Building Memory-Efficient Java Applications (2009) [pdf]
cs.virginia.edu
Building Memory-Efficient Java Applications (2009) [pdf]
1–10 of 14 posts
Re: Building Memory-Efficient Java Applications (2009) [pdf]
#2Does anyone have the audio of it? Also with memory is becoming less of a problem so people tend to completely ignore it, it's nice to see something like this.
Re: Building Memory-Efficient Java Applications (2009) [pdf]
#3Re: Building Memory-Efficient Java Applications (2009) [pdf]
#4Re: Building Memory-Efficient Java Applications (2009) [pdf]
#5Re: Building Memory-Efficient Java Applications (2009) [pdf]
#6Re: Building Memory-Efficient Java Applications (2009) [pdf]
#7Maybe this is addressed in the talk, any my "overhead" is actually my own mis-used data space which I am not aware of.
Re: Building Memory-Efficient Java Applications (2009) [pdf]
#8I tend to find the overhead of the JVM appears to contribute the most. If I have -Xmx 128MB for example, around 200MB will often be shown in Windows task manager, or whatever. Maybe this is addressed in the talk, any my "overhead" is actually my own mis-used data space which I am not aware of.
Re: Building Memory-Efficient Java Applications (2009) [pdf]
#9I tend to find the overhead of the JVM appears to contribute the most. If I have -Xmx 128MB for example, around 200MB will often be shown in Windows task manager, or whatever. Maybe this is addressed in the talk, any my "overhead" is actually my own mis-used data space which I am not aware of.
The Xmx flag controls the maximum heap size. The JVM has other things that are outside of the heap (the JVM process itself, the code cache, native buffers, resource handles, etc.).
Re: Building Memory-Efficient Java Applications (2009) [pdf]
#10is the talk available?