Beispiel #1
0
        public bool LSet(string key, int index, string value)
        {
            RedisNativeClient client = this.pool.GetRedisClient(key);

            if (client == null)
            {
                return(false);
            }

            client.LSet(key, index, UTF8String.ToBytes(value));
            return(true);
        }