我正在尝试使用 Azure Datacache 对象添加一个区域,但我收到了这样的错误“缓存不支持此操作”。
Dim dataCache As DataCache = dataCacheFactory.GetDefaultCache()
Dim tagList As New List(Of DataCacheTag)() From {New DataCacheTag("tagList")}
dataCache.CreateRegion("region-1")
dataCache.Put("key-name", "key-value", New Timespan(0, 10, 0), tagList, "region-1")