Flush Enterprise 库从另一个 ASP .NET 网站缓存块数据
我有两个 ASP .NET 网站,它们使用缓存管理器的同一个静态实例。 第一个网站从数据库获取数据并使用前面提到的缓存管理器对象来缓存它。
我的问题是,我无法使用相同的缓存管理器静态对象从我的第二个网站刷新此缓存数据。 尝试这样做有什么问题吗?解决这个问题的可能方法是什么? (任何有关该主题的文档材料将不胜感激)
提前感谢您。
I have two ASP .NET Web sites using one same static instance of a cache manager. The first web site fetches data from a database and caches it using the forth mentioned cache manager object.
My problem is that i am unable to flush this cached data from my second Web site using the same cache manager static object. Is there anything wrong in trying to doing so and what are the possible solutions to this problem? (Any documentation material on the subject would be appreciated)
Thanking you in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您有 2 个选项:
You have 2 options:
这是一种方法。
在
Site 2
中创建一个可以通过www.Site2Domain.com/clearECache
访问的方法,现在从
Site 1
执行HttpRequest/ WebRequest
到site 1
URLHere is one way of doing it.
Create a method in
Site 2
that can be access viawww.Site2Domain.com/clearECache
Now from
Site 1
do aHttpRequest/WebRequest
to thesite 1
URL