Is there a way of estimating (roughly) in memory object size from Serialized object size in Java
|
|
The size in memory will be usually between half and double the serializable size. The most extreme example might be the Byte which is more than 80 bytes Serialized can be 16 bytes in memory. You can use a profiler to tell you how much memory an object uses. Another way is to use a tool based on You might find this interesting Getting the size of an Object |
|||||||||||||||||
|
|
You can read this post about Durable java by Mark Davis (Dr. Mark Davis is lead architect at IBM's Center for Java Technology) http://macchiato.com/columns/Durable4.html Just read his post. Talking about
Such an interesting post indeed. You need read it if you do serialization in java. |
|||
|
|
|
A very nice Tool for this challenge: https://github.com/jbellis/jamm From the readme.txt:
|
|||
|
|