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テーブルの依存関係のテクニックを知っている人はいますか? - 時間ベースのキャッシュよりもはるかにクリーン。