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?