RedisClient Creation and IOC

We have some custom MVC attributes that are doing this:

using (RedisClient redisClient = new RedisClient(enPoint)) {

}

Will this cause us issuing constantly creating a redis client since I assume it has to connect to the server every time? If so, is the best implementation to use the pool? Lastly, I looked into the MVC integration docs but didn’t see much on MVC filters. I assume I need to wire this up manually with funq?

Please read the docs on the Redis Homepage it describes how to register the different Pooled Client Managers available in your IOC as a singleton.