0

I'm working with Azure shared cache. In the development process I need to write a lot of data which takes time.

Is it possible to configure the worker-role to write to a local cache?

istepaniuk
  • 4,016
  • 2
  • 32
  • 60
socksocket
  • 4,271
  • 11
  • 45
  • 70

1 Answers1

0

Have you considered the new in-role cache? You can specify either a portion of your existing role's RAM for cache, or create a dedicated cache role. Either way, it would be running within your deployment. Assuming you colocate your cache with, say, your web role, then you'd effectively have a local cache.

Look here to see a .net tutorial. Note that this cache can also be used with any other language; this just shows integration with Visual Studio (and it works the same in Eclipse).

David Makogon
  • 69,407
  • 21
  • 141
  • 189