public static void Remove(int channelId) { lock (LockObject) { DataCacheManager.RemoveByPrefix($"{CachePrefix}.{channelId}."); } }
public static void Remove(int channelId) { lock (LockObject) { var cacheKey = GetCacheKey(channelId); DataCacheManager.Remove(cacheKey); DataCacheManager.RemoveByPrefix(cacheKey); } }