ASP.NET 和多个 Web 服务器中的分布式缓存
我需要在多个 Web 服务器中使用分布式缓存。
我尝试过基于文件的缓存依赖项,但它在 UNC 路径中不起作用。我认为.NET无法监视UNC路径上的文件。
我知道微软在 Velocity 中推出了一项新功能。但是,还有其他解决方案(例如 PHP 中的 memcache)吗?
I need distributed cache to be used in more than one web server.
I've tried a file based cache dependency, but it doesn't work in UNC path. I think .NET can not monitor the files on the UNC path.
I know that Microsoft has presented a new feature in Velocity. But, is there any other solution (like memcache in PHP)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
有用于 ASP.NET 的 memcached 提供程序。
There are memcached providers for ASP.NET.
您是否知道“Velocity”现已成为最终的交付产品?它是 Windows Server AppFabric 的一部分。
Are you aware that "Velocity" is now a final, shipping product? It's part of Windows Server AppFabric.
您可以使用NCache。免费的 Express 版本最多可用于两台服务器。
编辑:我刚刚意识到你无法安装任何东西。 NCache 也需要在服务器上安装。
You could use NCache. A free express version is available for up to two servers.
EDIT: I just realized you cannot install anything. NCache needs installation on the server as well.