Flush Enterprise 库从另一个 ASP .NET 网站缓存块数据

发布于 2024-07-30 20:03:33 字数 195 浏览 8 评论 0原文

我有两个 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

獨角戲 2024-08-06 20:03:33

您有 2 个选项:

  • 创建 2 个缓存管理器实例
  • 配置您的网站以使用不同的应用程序池

You have 2 options:

  • Create 2 instances of the cache manager
  • Configure your web sites to use different application pools
坐在坟头思考人生 2024-08-06 20:03:33

这是一种方法。

Site 2 中创建一个可以通过 www.Site2Domain.com/clearECache 访问的方法,

public void ClearECache()
        {
            try
            {
                CacheManagerSettings conf = (CacheManagerSettings)ConfigurationSourceFactory.Create()
                    .GetSection(CacheManagerSettings.SectionName);

                conf.CacheManagers.ForEach(delegate(CacheManagerDataBase cache)
                {
                    CacheFactory.GetCacheManager(cache.Name).Flush();
                });
            }
            catch (Exception ex)
            {
                throw

            }

        }

现在从 Site 1 执行 HttpRequest/ WebRequestsite 1 URL

Here is one way of doing it.

Create a method in Site 2 that can be access via www.Site2Domain.com/clearECache

public void ClearECache()
        {
            try
            {
                CacheManagerSettings conf = (CacheManagerSettings)ConfigurationSourceFactory.Create()
                    .GetSection(CacheManagerSettings.SectionName);

                conf.CacheManagers.ForEach(delegate(CacheManagerDataBase cache)
                {
                    CacheFactory.GetCacheManager(cache.Name).Flush();
                });
            }
            catch (Exception ex)
            {
                throw

            }

        }

Now from Site 1 do a HttpRequest/WebRequest to the site 1 URL

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文