Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to share state between Azure instances?

I want to use a global data for MVC web application running on Windows Azure (e.g. something like a list of users having new messages).

For a normal webapp, I could use some per-appdomain storage like AppDomain.SetData or just static variable. What should I use for Azure instead (cache? blob storage? queues?) and what solution would be the fastest one?

like image 205
ovolko Avatar asked Mar 22 '11 09:03

ovolko


1 Answers

AppFabric Cache is an outdated service... for new developments use Azure Redis Cache.

like image 70
maartenk Avatar answered Oct 27 '22 03:10

maartenk