I'm using objectify's @Cached
annotations on my entities. Obviously, this means that any time I do a PUT on my entity, it also writes it to memcache. However, recently, I've seen memcache go down on appengine and as a result objectify fails to write the entitiy to memcache (writes to datastore fine).
In this failure however, objectify throws the memcache exception - specifically: com.google.appengine.api.memcache.MemcacheServiceException: Memcache put: Set failed to set 1 keys:
Is there a way to get objectify to NOT throw these exceptions? They are relatively harmless and I don't want to add try/catches everywhere.