Exemplo n.º 1
0
        readonly static StackExchange.Redis.IDatabase cache = StackExchange.Redis.ConnectionMultiplexer.Connect(_conn).GetDatabase();//redis0:6380,redis1:6380,allowAdmin=true

        #region ICache 成员

        public void Put(string key, object obj)
        {
            cache.Set(key, obj, _expireMinutes);
        }