Questions tagged [azure-in-role-cache]

In-Role Cache provides a caching layer to your Azure applications. Caching increases performance by temporarily storing information in-memory from other backend sources, and can reduce the costs associated with database transactions in the cloud.

In-Role Cache provides a caching layer to your Azure applications. Caching increases performance by temporarily storing information in-memory from other backend sources, and can reduce the costs associated with database transactions in the cloud.

14 questions
5
votes
1 answer

Performance difference between Azure Redis cache and In-role cache for outputcaching

We are moving an asp.net site to Azure Web Role and Azure Sql Database. The site is using output cache and normal Cache[xxx] (i.e. HttpRuntime.Cache). These are now stored in the classic way in the web role instance memory. The low hanging fruit is…
Mathias Rönnlund
  • 4,078
  • 7
  • 43
  • 96
2
votes
1 answer

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…
Isaac Levin
  • 2,809
  • 9
  • 49
  • 88
2
votes
1 answer

Windows Azure In-Role Caching not working after SDK 2.5 Upgrade

I updated my Azure web role project from SDK v1.8 to SDK v2.5 and the In-Role caching does not seem to work any more. I am seeing the following error ErrorCode ERRCA0017 :SubStatus ES0006:There is a temporary failure. Please retry later. (One or…
2
votes
1 answer

Local Cache and immutable objects - zero timeout

When using notification-based invalidation on Local Cache, the ttlValue time-out will still invalidate cache items and thus forcing a fetch from the cache cluster on the next request. For example, in the configuration below, items will time-out…
Dave New
  • 38,496
  • 59
  • 215
  • 394
1
vote
1 answer

In-role, co-located caching & CacheService.exe

We utilise Azure's co-located In-Role caching in our web roles. When looking at memory usage in Window's Resource Monitor, I see that a "CacheService.exe" is consuming a large portion of available RAM: Is this the cache cluster used by the in-role…
1
vote
1 answer

Windows Azure In-Role Caching Exception issue

I am getting this exception :- ErrorCode:SubStatus:There is a temporary failure. Please retry later. (One or more specified cache servers are unavailable, which could be caused by busy network or servers. For on-premises cache clusters, also…
loop
  • 9,002
  • 10
  • 40
  • 76
1
vote
1 answer

Azure In Role Caching Doesn't start on server with "Not running in a hosted service or the Development Fabric."

I started to use Azure in-role caching and everything works great in Azure compute emulator on my local machine, but not on server. I've already dealed with some problems, like lack of msshrtmi.dll on server, but now can't understand why get this…
0
votes
1 answer

Azure In-Role Cache Retirement

Microsoft announced that as of November 30,2016, "the Managed Cache Service will be shut down, and the In-Role Cache service will no longer be supported". My app uses an in-role cache for session storage and it still functional. The app is slated to…
Matt Zamec
  • 73
  • 6
0
votes
1 answer

Implementing In-Role caching Co-located and Dedicated together

I am implemented In-role caching, and my application I want to use both the caches in different scenarios. Below things are implemented: 1. Web Application - Web Role - Enabled Co-located caching 2. Cache Worker Role - Worker Role - Enabled…
0
votes
1 answer

Cache Host config in Azure In-Role caching

Accordingly to this MSDN article (on AppFabric Caching, which is what Azure is run on), I should be able to find a DistributedCacheService.exe.config file located at \Windows\System32\AppFabric, but it doesn't exist on any of the instances. When…
Dave New
  • 38,496
  • 59
  • 215
  • 394
0
votes
1 answer

Caching large objects - LocalCache performance

I have a few large objects which need to be stored and fetched from cache. These objects are around 1 - 2 mb in size. When running with localCache enabled, retrieval takes no more than a few milliseconds, but without it, it takes around 3 seconds,…
Dave New
  • 38,496
  • 59
  • 215
  • 394
0
votes
2 answers

Multiple DataCacheClients - Strange configuration behaviour

I am using Azure's In-Role caching for our web role cluster. I need to use separate dataCacheClients so to have different and explicitly set transport property configurations (maxBufferPoolSize and maxBufferSize). The problem is that each…
Dave New
  • 38,496
  • 59
  • 215
  • 394
0
votes
0 answers

Storage Strategy on Azure In-Role Cache

We have around 100 GB of data from different entities. There are some dimension, some fact and some transaction entities. Transaction items are in the range of 50 millions of rows. All this data is stored in blob storage with one csv file for each…
Srinivas
  • 2,479
  • 8
  • 47
  • 69
0
votes
2 answers

Azure in Role Cache and Windows Server AppFabric Cache in same solution

We're migrating Azure application to on-premise data-centres. When deploying to Azure package to Cloud services we need to use Azure in Role Cache. When deploying to Windows Server on-premise we need to use Windows Server AppFabric Cache. How do you…
Fosna
  • 2,050
  • 3
  • 22
  • 23