Beispiel #1
0
        public long LLen(string key)
        {
            RedisNativeClient client = this.pool.GetRedisClient(key);

            return((client == null) ? 0L : client.LLen(key));
        }