0

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

4

1 回答 1

1

为什么不为此使用MemcacheAPC之类的东西呢?

编辑:我还刚刚找到了5.3.3 的MySQLnd 查询缓存插件。

于 2010-11-30T15:50:04.307 回答