I'm using StructureMap to Enrich some of my objects with an instance call to
ProxyGenerator.CreateInterfaceProxyWithTarget(myObject, MYInterceptor)
Currently I have the MYInterceptor
inside my container, should I implement any type of caching for the interceptor?
The second question should I register my ProxyGenerator
inside my container and if so, should I apply any type of caching to it?