PHP版的ASP.NET的SqlCacheDependency

时间:2010-11-30 15:37:03

标签: php asp.net mysql caching sqlcachedependency

我发现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表依赖技术吗? - 比基于时间的缓存更清洁。

1 个答案:

答案 0 :(得分:1)

为什么不使用MemcacheAPC这样的内容?

编辑:我刚刚找到了5.3.3的MySQLnd Query Cache插件。