建立緩存依賴:
一個非常簡單的方法,首先我們先看看兩個.Net 2.0新增的兩個類:
AggregateCacheDependency在System.Web.Caching命名空間中,AggregateCacheDependency主要作用是用於組合 ASP.Net 應用程序的 Cache 對象中存儲的項和 CacheDependency 對象的數組之間的多個依賴項。
SqlCacheDependency也存在於System.Web.Caching命名空間中,這個類用於建立ASP.Net應用程序的Cache對象中存儲的項和特定SQL Server數據庫表之間的聯系。
SqlCacheDependency是如何建立Cache對象中存儲的項和特定SQL Server數據庫表之間的聯系的呢?看一下Web.Config配置文件就一目了然了。
<?XML version="1.0"?>
<configuration XMLns="http://schemas.microsoft.com/.NetConfiguration/v2.0">
<connectionStrings>
<add name="LocalConnString" connectionString="Server=(Local);uid=sa;pwd=123456;DataBase=MSPetShop4"/>
</connectionStrings>
<system.web>
<caching>
<sqlCacheDependency enabled="true" pollTime="10000">
<databases>
<add name="MSPetShop4" connectionStringName="LocalConnString" pollTime="10000"/>
</databases>
</sqlCacheDependency>
</caching>
<compilation debug="true"/>
</system.web>
</configuration>
配置節<databases><add name="MSPetShop4" connectionStringName="LocalConnString" pollTime="10000"/></databases>中配置了數據庫信息,SqlCacheDependency類會自動完成對此配置節信息的讀取以建立和數據庫之間的聯系。(注意)name="MSPetShop4"必須和new
SqlCacheDependency("MSPetShop4", "表名稱")中的數據庫名稱相一致。更多的配置信息可以查看(MSDN幫助文檔)。
使數據庫支持SqlCacheDependency特性:
要使得7.0或者2000版本的SQL Server支持SqlCacheDependency特性,需要對數據庫服務器執行相關的配置步驟。有兩種方法配置SQL Server:
使用ASPnet_regsql命令行工具,或者使用SqlCacheDependencyAdmin類。
ASPnet_regsql工具位於Windows\Microsoft.Net\Framework\[版本]文件夾中,如果要配置SqlCacheDependency,則需要以命令行的方式執行。
以下是該工具的命令參數說明:
-? 顯示該工具的幫助功能;
-S 後接的參數為數據庫服務器的名稱或者IP地址;
-U 後接的參數為數據庫的登陸用戶名;
-P 後接的參數為數據庫的登陸密碼;
-E 當使用Windows集成驗證時,使用該功能;
-d 後接參數為對哪一個數據庫采用SqlCacheDependency功能;
-t 後接參數為對哪一個表采用SqlC
比如在petshop4.0的數據庫中使用SqlCacheDependency特性:ASPnet_regsql -S localhost -E -d MSPetShop4 -ed
以上面的命令為例,說明將對名為MSPetShop4的數據庫采用SqlCacheDependency功能,且SQL Server采用了Windows集成驗證方式。我們還可以
對相關的數據表執行ASPnet_regsql命令,如:
ASPnet_regsql -S localhost -E -d MSPetShop4 -t Item -et
ASPnet_regsql -S localhost -E -d MSPetShop4 -t Product -et
ASPnet_regsql -S localhost -E -d MSPetShop4 -t Category -et
最後為使用緩存:
獲取數據源的方法,結合實際使用做修改。
就這麼簡單:)