我们设法使用 App Fabric Caching Server 来存储我们的Outputcache
,而不更改我们的代码,只使用配置。它运行良好。
有没有办法对 .Net Cache( HttpContext.Current.Cache
) 做同样的事情?无需更改我们的代码,只需配置。
谢谢
HttpContext Cache没有提供者抽象 ( ProviderBase
) 。如@Icarus 所示,有OutputCache和Session 。这将需要更改代码。
这里有几个想法给你...
DataCache
而不是HttpContext.Current.Cache
. 请参阅Hanselmans 示例。