Category: jcommon

Fastest Deep Cloning

3 min read java jcommon programming 2 comments

I recently needed to do deep cloning of my Java objects and began to do the old-school style I've used for years: Use ObjectOutputStream and ObjectInputStream to do a "poor-boys" deep clone. However, the performance of this on large Objects is absolutely awful not to mention the amount of memory and…

Read more →