0

hey. friends i dont know this question is really asked before or not ? but i need to know about .net cache and its limitation in case of web farms and not in case of web farms.. ?

sikender
  • 5,883
  • 7
  • 42
  • 80

2 Answers2

2

asp.net cache can't be used in a web farm. It is an in-process cache. You can consider memcached with memcached providers.

Fahad
  • 1,261
  • 9
  • 19
1

I suspect you're talking of the ASP.NET cache. The cache is per instance only, e.g. each web farm instance has its own cache (don't mix this up with session state, which can be stored in a shared way).

What kind of limitations do you mean?

Lucero
  • 59,176
  • 9
  • 122
  • 152