我们相信 AppFabric 缓存非常适合缓存要求。但是,我们还想实现某种数据库依赖,即缓存应该与后端数据库异步同步。read-through and write behind 功能似乎很有趣,谁能帮我们指出一个方向,我们如何利用这些功能来实现 appfabric 和数据库之间的自动同步行为?非常感谢!
问问题
536 次
1 回答
0
SqlDependency 可用于通知您的应用程序有关数据库中的修改。要使用它,您需要在数据库级别启用服务代理,请在实施此解决方案之前通过这些限制
using (SqlConnection connection = new SqlConnection(yourConnectionString))
{
connection.Open();
using (SqlCommand command = new SqlCommand(databaseSqlToBeMonitered, connection))
{
SqlDependency dependency = new SqlDependency(command);
dependency.OnChange += new OnChangeEventHandler((a, b) =>
{
//Remove data from cache
});
command.ExecuteReader().Close();
}
}
于 2012-12-19T06:11:36.723 回答