C# Azure Blob的sqlCacheDependency

C# Azure Blob的sqlCacheDependency,c#,asp.net-mvc,azure,outputcache,azure-storage-blobs,C#,Asp.net Mvc,Azure,Outputcache,Azure Storage Blobs,SqlCacheDependency是否适用于Azure Blob存储 我有一个从存储中获取一些blob的操作(值在大多数情况下是常量)。我尝试使用OutputCache执行此操作。然后我尝试使用SqlCacheDependency来清除blob中的缓存,但这不起作用 那么,如何使用SqlCacheDependency或类似的方法来处理blob呢 [HttpGet] [OutputCache(Duration = int.MaxValue, VaryByParam = "none")] publ

SqlCacheDependency
是否适用于Azure Blob存储

我有一个从存储中获取一些blob的操作(值在大多数情况下是常量)。我尝试使用OutputCache执行此操作。然后我尝试使用
SqlCacheDependency
来清除blob中的缓存,但这不起作用

那么,如何使用
SqlCacheDependency
或类似的方法来处理blob呢

[HttpGet]
[OutputCache(Duration = int.MaxValue, VaryByParam = "none")]
public ActionResult GetCalculatorSalaries()
{
    var salaries = _service.LoadCalculatorSalaries();
    return Json(salaries, JsonRequestBehavior.AllowGet);
}

顺便说一句,Azure Blob和SQLAzure之间没有关系,所以sqlCacheDependency将无法工作


新的(预览版)可能值得研究。

Azure Blob存储不是SQL,所以我不这么认为。