问题标签 [azure-in-role-cache]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
azure - 角色内、共存缓存和 CacheService.exe
我们在我们的 Web 角色中使用 Azure 的同位角色内缓存。
在 Window 的资源监视器中查看内存使用情况时,我发现“CacheService.exe”正在消耗大部分可用 RAM:
这是角色内缓存使用的缓存集群吗?我可以通过查看 CacheService.exe 的内存使用情况来粗略地假设所有缓存对象的总累积大小吗?
azure - 实现角色内缓存并存和专用
我实现了角色内缓存,我的应用程序希望在不同的场景中同时使用这两种缓存。
实现了以下内容: 1. Web 应用程序 - Web 角色 - 启用同位缓存 2. 缓存工作者角色 - 工作者角色 - 启用专用缓存
现在,问题是如何在 DataCacheClients 部分下的 Web.config 文件中定义它们。
如何在这里定义两个角色,以便我可以在应用程序中同时使用它们?
我知道我们可以添加多个 DataCacheClient 部分,但那是针对命名缓存的。我认为这是不同的情况。
c# - Serializing CloudBlockBlob for Caching
I am implementing Azure In-Role Caching for a Web API Web Role that I have. I would like to be able to Cache the BlobReference for specific blobs that do not change often. Here is the code I am using to get the BlobReference. The items I am getting are zip files that are of type CloudBlockBlob
However when I try to Put the item in Cache, it says that CloudBlockBlob is not serializable. Since I cannot modify that class to be serializable, is there a work-around for this? If not, what is the preferred method to cache the blob metadata for blobs that do not change often?
azure - Azure 角色内缓存停用
微软宣布,自 2016 年 11 月 30 日起,“托管缓存服务将关闭,不再支持角色内缓存服务”。我的应用程序使用角色内缓存进行会话存储,并且它仍然可以正常工作。该应用程序计划于 2017 年 3 月 31 日下线。有谁知道 Azure 中的角色内缓存是否会在一段时间内保持功能(即使不受支持)?