示例#1
0
 internal static void Uncache <T>(ICache <T> cache, ulong id) where T : IChannel
 {
     _globalCache.Mutex(() => {
         _globalCache.Remove(id);
         FactoryUtils.Uncache(cache, id);
     });
 }