gpt4 book ai didi

ASP.NET 的 SqlCacheDependency 的 PHP 版本

转载 作者:行者123 更新时间:2023-11-29 14:57:06 25 4
gpt4 key购买 nike

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

最佳答案

为什么不使用类似 Memcache 的东西?或APC为此?

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

关于ASP.NET 的 SqlCacheDependency 的 PHP 版本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4315471/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com