Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在两台负载平衡服务器上有一个站点,并且正在使用HttpRuntime.Cache. 是否可以在我的 C# 代码中区分缓存项在哪个服务器上?在添加或获取项目时?
HttpRuntime.Cache
HttpRuntime.Cache 不会在我们的服务器之间共享,因此放入缓存中的每个项目都将被缓存两次:每台服务器一次。
如果要共享缓存,请使用http://www.hanselman.com/blog/InstallingConfiguringAndUsingWindowsServerAppFabricAndTheVelocityMemoryCacheIn10Minutes.aspx