Sharing Enterprise Library Database Cache between Multiple Applications
问题 I'm having a strange problem with the Enterprise Library 5 Caching Block where two applications are sharing the same database cache. I've written a very simple static cache manager class which wraps up creating the EntLib5 ICacheManager, and reading/writing to it. private static ICacheManager _manager = null; private static ICacheManager Manager { get { lock (ClientLock) { if (_manager == null) _manager = CacheFactory.GetCacheManager(); return _manager; } } } public static object Get(string