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

Intermittent Azure cache error: “Cache referred to does not exist. Contact administrator or use the Cache administration tool to create a Cache.”

We have a deployment which has been using a cache role for a while (with no real issues), and to which we have recently added a colocated cache on one instance. Since we have added this colocated cache we have started to occasionally see this…
Sam Holder
  • 32,535
  • 13
  • 101
  • 181
0
votes
0 answers

pub\sub between redis cache and in-memory cache

In my webpage I've created two kinds of cache: in memory cache, for every process. out-of-process cache. I used Redis (specifically Booksleeve). Now that I have those 2 built, I would like to form a communication between them. I would like that…
DanielY
  • 1,141
  • 30
  • 58
0
votes
1 answer

Azure Dedicated Cache Across Multiple Cloud Services

I have two cloud services one service also contain dedicated cache worker role from other cloud service how can I put data in dedicated cache on other cloud service?
SOF User
  • 7,590
  • 22
  • 75
  • 121
0
votes
1 answer

combined cache provider for azure in c#

For a website I have in my azure cloud and I work on, I need to implement a "hybrid" cache. Meaning, my website displays a table of records from a certain db, and provides an option to either add new records or update existing ones. For the reads,…
DanielY
  • 1,141
  • 30
  • 58
0
votes
2 answers

Azure Shared Caching and Co-located Caching in the same project

So I was wondering if it was possible to use both Azure Shared caching and the new co-located cache for a web role? I want to store session state in the old Azure Shared Cache to preserve session state between deployments of the application using…
onit
  • 6,306
  • 3
  • 24
  • 31
0
votes
1 answer

Azure co-located cache session state (instance failure/updates)

How does azure co-located cache when used for session state through the DistributedCacheSessionStateStoreProvider handle scenarios where the instances is updated (rolling/incremental) or if there is a failure on one of the instances. Is all…
jmw
  • 2,864
  • 5
  • 27
  • 32
0
votes
1 answer

Debugging Web application using Azure Caching

I would like to find a best practice to debug an existing ASP.NET MVC application. That's a Web Role already hosted into Azure. The application is using Windows Azure Caching. The configuration file has been defined with the settgins of an Azure…
fix105
  • 234
  • 1
  • 6
  • 16
0
votes
2 answers

Initial load of dedicated cache in Windows Azure

I have a worker role set up for dedicated caching. On application start up I'd like to load the cache from a database (ideally in the OnStart() method in the WorkerRole/RoleEntryPoint). I haven't been able to find how to add an object to the cache…
0
votes
1 answer

windows azure caching - best practice for checking whether a key exist or not

In Windows Azure Caching (http://msdn.microsoft.com/en-us/library/windowsazure/hh914161.aspx), Microsoft.ApplicationServer.Caching.DataCacheException is thrown (with ErrorCode: KeyDoesNotExist), when someone tries to get a not-cached object (i.e.,…
soleiljy
  • 1,121
  • 2
  • 13
  • 20
0
votes
4 answers

CacheInstaller.exe has stopped working

I am having below mentioned issue when I am running Asp.Net MVC 2 project on windows Azure emulator (dev environment) I have installed Windows Azure SDK for .NET - October 2012 version and I am using cache feature on my system. With above error…
Sampath
  • 63,341
  • 64
  • 307
  • 441
0
votes
1 answer

AppFabric Caching - works locally but not from another machine

I've have added my domain account permissions to Windows AppFabric 1.1 Caching using the "grant" Powershell command. A sample app runs locally on the machine itself fine. Also, I'm able to telnet to the port 22233 from another box successfully (I'm…
BuddyJoe
  • 69,735
  • 114
  • 291
  • 466
0
votes
2 answers

Azure (Co-Located or Dedicated) Cache Across Cloud Services

Is it possible to define certain role(s) as co-located\dedicated cache roles on Cloud Service A, and access them from roles in Cloud Service B? (without using the Azure Shared Cache solution)
sternr
  • 6,216
  • 9
  • 39
  • 63
0
votes
1 answer

Azure Cache Session State-- Does Deploy Boot Users?

If one is using azure cache for asp.net mvc session state management, do deployments including dlls/web.configs changes still boot users/force a new session? I would assume that since the session is then external to the app that it would keep it…
Micah
  • 10,295
  • 13
  • 66
  • 95
0
votes
1 answer

Cache Notification config not working in Windows Azure Cache Preview

I'm trying to set up a Windows Azure Cache Preview implementation, but I'm running into problems getting the local cache configuration to work. Here is my current config:
Dusda
  • 3,347
  • 5
  • 37
  • 58
0
votes
1 answer

windows azure caching: what does PREVIEW mean?

It seems that Windows Azure Caching is still in Preview according to MSDN. And also some blogs say "Windows Azure Caching is not supported in production" What does this mean? Does this mean that it is not possible to deploy Web Roles using Windows…
soleiljy
  • 1,121
  • 2
  • 13
  • 20
1 2 3
14
15