What are the default expiration parameters associated with items added to the ASP.NET cache?
Do items added expire after an absolute period of time, and if so, what is the default expiration time? Or do they use a sliding-window?
I can’t seem to find any references to default behavior of items added and I need to know because I am supporting a code-base where all calls to the Cache are done via Cache[key] = value rather than specifying explicit dependencies / expiration policies
According to the documentation this is equivalent to Cache.Insert which means
Effectively this means that ASP.NET will manage it based on memory pressure.