Well, this is a great title for this post not only as it’s the first blog post I’ve made here in seven months, but I’ve also had the song from Portal stuck in my head lately. 🙂 Looking at my blog it would be easy to classify me as MIA but I’ve actually been quite…
Category: jcommon
Fastest Deep Cloning
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 CPU it takes to…