I'm just getting started with Ehcache. We are using it as a simple disk cache, and pretty much is doing what we expect. However, it seems like there is some undesirable overhead in the Cache.put() operation. It looks like internally put() ends up deserializing the previously existing object for the key, which shouldn't be necessary if we just want to overwrite ...