public bool LInsert(string key, bool insertBefore, byte[] pivot, byte[] value) { RedisNativeClient client = this.pool.GetRedisClient(key); if (client == null) { return(false); } client.LInsert(key, insertBefore, pivot, value); return(true); }