I am trying to write a simple IoC library, and i am going to use it in asp.net websites.
My Question is: Should i cache all the registered objects "i add this in Dictionary<Type, object>
" and use the cached objects each request? ,or should i resolve them each time page loads or on a new request?
And does the exist tools such as unity has a built in caching?