Example #1
0
        public long LRem(string key, int removeNoOfMatches, string value)
        {
            RedisNativeClient client = this.pool.GetRedisClient(key);

            return((client == null) ? 0L : client.LRem(key, removeNoOfMatches, UTF8String.ToBytes(value)));
        }