Building Memory-efficient Java Applications
11–16 of 16 posts
Re: Building Memory-efficient Java Applications
#12experiments on a sampling of different JVMs.
More recent :
http://vanillajava.blogspot.com/2011/07/java-getting-size-of...
http://vanillajava.blogspot.com/2011/07/java-how-much-memory...
http://kohlerm.blogspot.com/2008/10/knowledge-about-much-mem...
http://kohlerm.blogspot.com/2009/02/how-to-really-measure-me...
http://marxsoftware.blogspot.com/2011/12/estimating-java-obj...
(i have zillions bookmarks on this)
Re: Building Memory-efficient Java Applications
#13This is probably an 'apple and oranges' type of question, but I haven't used Erlang, nor Java to build large applications. Does anyone know how Erlang compares to Java in regards to memory usage/performance?
http://erlang.org/doc/efficiency_guide/advanced.html#9
(I haven't tried this:
erts_debug:flat_size(dict:new()).
http://stackoverflow.com/questions/1964015/erlang-what-is-mo...Re: Building Memory-efficient Java Applications
#14http://blogs.oracle.com/jrose/entry/fixnums_in_the_vm
Has anyone seen anything more recent?
Re: Building Memory-efficient Java Applications
#15Re: Building Memory-efficient Java Applications
#16This is probably an 'apple and oranges' type of question, but I haven't used Erlang, nor Java to build large applications. Does anyone know how Erlang compares to Java in regards to memory usage/performance?
Per object overhead in functional languages is usually lower since polymorphism is handled at the function level rather than the data level. You don't have to store class pointers etc, just the raw data and probably a type tag. I can't find a reference for erlang's representation but I believe it has only a little more overhead than ocaml which is described here - http://rwmj.wordpress.com/2009/08/04/ocaml-internals/