public string RPop(string key) { RedisNativeClient client = this.pool.GetRedisClient(key); return((client == null) ? null : UTF8String.ToString(client.RPop(key))); }
public string RemoveEndFromList(string listId) { RedisNativeClient client = this.pool.GetRedisClient(listId); return((client == null) ? null : UTF8String.ToString(client.RPop(listId))); }