예제 #1
0
파일: Cache.cs 프로젝트: RahmanM/RedCache
        public void SqlChangedCallback(string table, string key)
        {
            if (!string.IsNullOrEmpty(key))
            {
                _Cache.Remove(key);

                if (_channel != null)
                {
                    _channel.Unsubscribe(key, table);
                }
            }
        }