Questions tagged [azure-caching]

Azure Caching suite of offerings providing distributed, in-memory caching solution for Microsoft Azure applications. It refers to Azure Redis Cache (Preview), Azure Managed Cache and Azure In-Role Cache.

There are two Distributed In-Memory Caching suites from Microsoft in Azure, namely "Azure Shared Cache" and "Azure Cache".

Azure Shared Cache is a distributed, in-memory, multi-tenant, shared caching solution. It is now deprecated in favor of proper Azure Caching, and will be retired on September 1, 2014.

Azure Cache is a distributed, in-memory, single-tenant, role-based caching solution. Azure Caching is feature-rich such as support for Regions, Tags, High Availability; it also has a wrapper to migrate applications that use Memcached.

Offerings

Azure Cache is available in three offerings

Azure Redis Cache (Preview)

A new cache offering from Microsoft that provides a fully managed Redis caching service. As this service is currently in preview it does not offer an SLA, nor does it come with any attached cost.

Azure Managed Cache Service

Formerly known as Dedicated application has to attach/add 'Cache Worker Roles' (special purpose Azure Worker Roles for Caching) to use Caching. These roles are dedicated solely for 'Caching' purpose, hence the name 'Dedicated'.

In-Role Cache for Azure Cache

Formerly known as Collocated application could use unused memory of their existing roles (Web/Worker) for Caching purposes. In this case, customer can configure how much of their role memory is reserved for Azure Cache. By default this is set to 30%.

217 questions
0
votes
2 answers

"Temporary failure" on Azure caching service

Starting last night around 2:00 am - some 8 hours after anybody touched anything having to do with the website - our Azure website began throwing this error: Error: ErrorCode:SubStatus:There is a temporary failure. Please retry later. (One or more…
Ken Smith
  • 20,305
  • 15
  • 100
  • 147
0
votes
1 answer

ImageResizer resized images and CDN

If a request is made to a CDN for a resized image, am I right in assuming that a second request for the same image but for a different size will NOT return the cached image? E.g. 1st request: myphoto.jpp 100x200 2nd request: myphoto.jpg…
wallismark
  • 1,766
  • 2
  • 21
  • 35
0
votes
1 answer

Azure Cache Preview - 503 Service Unavailable

I'm trying to use the Azure Cache Preview. It works most of the time, but suddenly I'm getting a 503 Service Unavailable error. This question is 2 parts - First off, is this sudden 503 a transient thing or can something in the code cause this? My…
mccow002
  • 6,754
  • 3
  • 26
  • 36
0
votes
1 answer

How caching detect complex object changes and update cache data efficiently

Default ASP.NET use in memory cache so it looks like it use Dictionary<> internally to use key-value pairs. But external caching solutions like Azure cache or others serialize data which makes scenarious different that in memory solution. At below…
Freshblood
  • 6,285
  • 10
  • 59
  • 96
0
votes
1 answer

Can I encrypt the ConfigStoreConnectionString when using In-role Window Azure Cache (dedicated role)?

Is there a way to encrypt the ConfigStoreConnectionString when using In-role Window Azure Cache (dedicated role)? Right now the ConfigStoreConnectionString is stored in the ServiceConfiguration file and it's in the clear. I've been asked to encrypt…
0
votes
1 answer

Creating namespace in Azure

Am having a problem in creating a namespace in azure. After fill all the required fields the button "create namespace" is disabled. Please help me.! Please see the image which describes my problem clearly.
0
votes
1 answer

Can a Cache WorkerRole add to its own cache?

I have a Cache WorkerRole in Azure. I was planning to override the OnStart behavior of the role to pre-fill my cache and to use my own scheduler to fill the cache from within the worker role itself. This isn't scalable, I know this, but I don't…
Faraday
  • 2,904
  • 3
  • 23
  • 46
0
votes
2 answers

Windows azure caching is not instantiate in console base application

I have an issue when trying to initiate DataCache in my console/web application. After a long time exception is thrown shown in the image below. I have tried all the ways using DataCacheFactory and simple DataCache but the same issue is occurring.…
AAJ
  • 19
  • 2
0
votes
1 answer

When to use Azure Cache Service for Session in ASP.NET (MVC)

I read that when using Session objects in an ASP.NET web app hosted in Azure, if the request is handled by a different (virtual) machine, the app cannot see Session variables of another virtual machine (obviously), so it is recommended to use Azure…
Andrea
  • 555
  • 5
  • 28
0
votes
2 answers

Create Azure Cache Programmatically

I am creating an application that automate the deployment to Azure Web Sites. I was able to create Azure Web Site, database and storage programmatically but I didn't saw any library out there that can create Azure Cache programmtically. Anyone?…
0
votes
2 answers

How to configure Kentico CMS to use In-Role Cache

First of all, I'm new to Kentico CMS. We download the from here. Then install the application as Windows Azure project. When I look at web.config, Kentico CMS 7 (as of today) uses Shared Caching which has been deprecated a couple of years back. Is…
Win
  • 61,100
  • 13
  • 102
  • 181
0
votes
1 answer

CacheServiceEmulator.exe >3GB RAM usage?

I am developing an application for windows azure using the latest SDK. At the moment I am implementing the session provider using the cache, but the simulator is completely out of proportion: The cache is implemented as a "very small" worker role…
Christoph Fink
  • 22,727
  • 9
  • 68
  • 113
0
votes
2 answers

Is it possible to put/get objects in Azure Dedicated Cache using console application

Could someone please confirm whether it's possible to make user of Azure Dedicated Cache using normal console application OR it should be the azure project?
Nil Pun
  • 17,035
  • 39
  • 172
  • 294
0
votes
1 answer

How Does Azure Caching Store Data With References Between Objects

I am wondering about how Azure Caching stores data where there are references between objects. For example consider a structure which contains ObjectA, and ObjectA has ObjectB and ObjectC as properties, and ObjectC also has a property called…
Frank Cannon
  • 1,643
  • 2
  • 18
  • 29
0
votes
1 answer

Size limit for Azure Cache Service

Is there also an object size limit to Azure Cache Service (preview)? I know that Azure shared cache has an object limit of 8mb and just wondering if the same limit applies Azure Cache Service (preview).
AshT
  • 535
  • 1
  • 8
  • 20