Example #1
0
        public string LPop(string key)
        {
            RedisNativeClient client = this.pool.GetRedisClient(key);

            return((client == null) ? null : UTF8String.ToString(client.LPop(key)));
        }
Example #2
0
        public string RemoveStartFromList(string listId)
        {
            RedisNativeClient client = this.pool.GetRedisClient(listId);

            return((client == null) ? null : UTF8String.ToString(client.LPop(listId)));
        }