What is the best way to handle a complete AppFabric meltdown, ie ALL cache-hosts go down?
At the moment, my cache client access methods (ie put/get) are wrapped up in a try catch block with a null return on failure. Is this the right way to handle things?
What is the best way to handle DataCacheFactory initialisation failures? For example, if the cache cluster is down the cache client will timeout and this will occur for all subsequent calls until the cluster is restored. To get round this I have implemented a boolean that will cause the application to avoid all caching until we get a successful DataCacheFactory instance. Does this sound like a reasonable solution?