HttpRunTime Cache vs Enterprise Library Cache
Saturday, March 28th, 2009This post aims to highlight the differences between the cache implementation of HttpRunTime and EnterpriseLibrary
HttpRuntime.Cache
Enterprise Library Caching Block
Standard Actions
Add Item to Cache
Read Item from Cache
Update Item to Cache
(using insert)
(using add)
Delete Item from Cache
Flush all Items in Cache
Enumeration Actions
Enumerate all items in cache
Employ LINQ Expressions
Cache Dependencies
Cache Dependency – File
Cache Dependency – Other Cache Item
[...]