视图和过程的SqlCacheDependency

时间:2011-11-14 05:41:55

标签: asp.net sql-server-2008 caching sqlcachedependency broker

我想将SqlCacheDependency与视图和过程一起使用。

我正在使用 Linq to Sql

我目前使用的代码仅在您使用单表时才有效:

public static List<T> LinqCache<T>(this System.Linq.IQueryable<T> q, System.Data.Linq.DataContext dc, string CacheId)
{
   try
   {
      List<T> objCache = (List<T>)System.Web.HttpRuntime.Cache.Get(CacheId);

      if (objCache == null)
      {
         /////////No cache... implement new SqlCacheDependeny//////////
         //1. Get connstring from DataContext
         string connStr = dc.Connection.ConnectionString;

         var c = System.Web.Caching.SqlCacheDependencyAdmin.GetTablesEnabledForNotifications(connStr);

         //2. Get SqlCommand from DataContext and the LinqQuery
         string sqlCmd = dc.GetCommand(q).CommandText;

         //3. Create Conn to use in SqlCacheDependency
         using (System.Data.SqlClient.SqlConnection conn = new System.Data.SqlClient.SqlConnection(connStr))
         {
            conn.Open();
            //4. Create Command to use in SqlCacheDependency
            using (System.Data.SqlClient.SqlCommand cmd = new System.Data.SqlClient.SqlCommand(sqlCmd, conn))
            {
               //5.0 Add all parameters provided by the Linq Query
               foreach (System.Data.Common.DbParameter dbp in dc.GetCommand(q).Parameters)
               {
                  cmd.Parameters.Add(new System.Data.SqlClient.SqlParameter(dbp.ParameterName, dbp.Value));
               }

               //5.1 Enable DB for Notifications... Only needed once per DB...
               System.Web.Caching.SqlCacheDependencyAdmin.EnableNotifications(connStr);

               //5.2 Get ElementType for the query
               string NotificationTable = q.ElementType.Name;

               //5.3 Enable the elementtype for notification (if not done!)
               if (!System.Web.Caching.SqlCacheDependencyAdmin.GetTablesEnabledForNotifications(connStr).Contains(NotificationTable))
                  System.Web.Caching.SqlCacheDependencyAdmin.EnableTableForNotifications(connStr, NotificationTable);

               //6. Create SqlCacheDependency
               System.Web.Caching.SqlCacheDependency sqldep = new System.Web.Caching.SqlCacheDependency(cmd);
               // - removed 090506 - 7. Refresh the LinqQuery from DB so that we will not use the current Linq cache
               // - removed 090506 - dc.Refresh(System.Data.Linq.RefreshMode.OverwriteCurrentValues, q);
               //8. Execute SqlCacheDepency query...
               cmd.ExecuteNonQuery();
               //9. Execute LINQ-query to have something to cache...
               objCache = q.ToList();
               //10. Cache the result but use the already created objectCache. Or else the Linq-query will be executed once more...
               System.Web.HttpRuntime.Cache.Insert(CacheId, objCache, sqldep);
            }
         }
      }
      //Return the created (or cached) List
      return objCache;
   }
   catch (Exception ex)
   {
     throw ex;
   }
}

现在我想为视图实现sqlcachedependency(多​​个表)。

我尝试使用此查询

System.Web.Caching.SqlCacheDependency
dep1 = new System.Web.Caching.SqlCacheDependency(cmd1),
dep2 = new System.Web.Caching.SqlCacheDependency(cmd2);

System.Web.Caching.AggregateCacheDependency aggDep = new System.Web.Caching.AggregateCacheDependency();
aggDep.Add(dep1, dep2);

dc.Refresh(System.Data.Linq.RefreshMode.OverwriteCurrentValues, q);
cmd.ExecuteNonQuery();
objCache = q.ToList();
System.Web.HttpRuntime.Cache.Insert(CacheId, objCache, aggDep);

但是这个查询不起作用,因为即使我更改基础表,缓存也不会变得无效。

我用谷歌搜索了太久但我找不到适用于视图和程序或多个表的代码。

1 个答案:

答案 0 :(得分:1)

使用基于表的通知时,您不需要发出单独的SqlCommand样式查询 - 您的ExecuteNonQuery和相关代码是多余的。只需使用您构建的AggregateCacheDependency添加LINQ结果。

您确定已完全启用基于表格的更改通知吗?需要在数据库中创建一个表,一些触发器和一个存储过程,以及服务器上的一些代码来触发定期轮询。在声明缓存未过期之前,请务必等待足够长的时间进行轮询。

您还可以自己查看更改表的内容,以查看是否在数据库端选择了更改:

SELECT * FROM [dbo]。[AspNet_SqlCacheTablesForChangeNotification]

如果来自单个表的更改正在运行,您可以尝试使用SqlCacheDependency.CreateOutputDependency(字符串依赖),以简化您的代码。参数是一个或多个表的列表,格式为“DdName:TableName; DbName:TableName”。 DbName来自web.config。

说了这么多之后,我还应该指出,不推荐使用基于表的更改通知,新代码应该使用Service Broker通知。是的,它们可以与LINQ一起使用。