public bool LTrim(string key, int keepStartingFrom, int keepEndingAt) { RedisNativeClient client = this.pool.GetRedisClient(key); if (client == null) { return(false); } client.LTrim(key, keepStartingFrom, keepEndingAt); return(true); }