Let's say I'm using server-side caching with the OutputCacheAttribute
attribute as follows:
[OutputCache(Duration = 86400, Location = System.Web.UI.OutputCacheLocation.Server)]
Is it impacted by the IIS "Cache size limit (in MB)" parameter (in Output Caching) ?
It seems that it's not the case, but I would like to find a way to configure the maximum size of the cache used by this attribute (at the application or global level, whichever is applicable).