Nov11 / kryo

Automatically exported from code.google.com/p/kryo
BSD 3-Clause "New" or "Revised" License
0 stars 0 forks source link

Deserializing the Object for the first time takes more time than the subsequent times #151

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?

SomeClass.java is a serializable class. I have to serialize and deserialize the 
objects A, B and C

SomeClass A = new SomeClass();
SomeClass B = new SomeClass();
SomeClass C = new SomeClass();

Deserializing A takes more time than B and C. [i.e the first object takes more 
time ]. Please let me know the reason

Original issue reported on code.google.com by sathya...@gmail.com on 7 Apr 2015 at 5:31