我发现SqlCacheDependency在编写C#ASP.NET应用程序时非常有用,并且希望在我的PHP应用程序中使用类似的东西。有谁能提出建议?
SqlCacheDependency永远缓存页面输出,直到在数据库中修改指定的表。
以下是ASP.NET中发生的事情的基本要点:
SqlCacheDependency SqlDep = null;
// Check the Cache for the SqlSource key.
// If it isn't there, create it with a dependency
// on a SQL Server table using the SqlCacheDependency class.
if (Cache["MyCache"] == null) {
SqlDep = new SqlCacheDependency("DatabaseName", "TableName");
// Perform action to be cached ...
var result = DatabaseIntensiveFunction();
Cache.Insert("MyCache", result, SqlDep);
}
else {
// The data was retrieved from the Cache.
}
// Output page from cache.
Output(Cache["MyCache"]);
所有人都知道任何MySql表依赖技术吗? - 比基于时间的缓存更清洁。