Disables the DeepCloneRuntimeCacheProvider for now until we solve this cache problem

This commit is contained in:
Shannon
2015-05-20 17:51:53 +10:00
parent 9e223eb891
commit 260ec800c2

View File

@@ -26,7 +26,8 @@ namespace Umbraco.Core.Persistence.Repositories
//IMPORTANT: We will force the DeepCloneRuntimeCacheProvider to be used here which is a wrapper for the underlying
// runtime cache to ensure that anything that can be deep cloned in/out is done so, this also ensures that our tracks
// changes entities are reset.
_cache = new CacheHelper(new DeepCloneRuntimeCacheProvider(cache.RuntimeCache), cache.StaticCache, cache.RequestCache);
//_cache = new CacheHelper(new DeepCloneRuntimeCacheProvider(cache.RuntimeCache), cache.StaticCache, cache.RequestCache);
_cache = cache;
}
/// <summary>