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