views:

83

answers:

3

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.. ?

+2  A: 

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
sorry to say . but it is used in web farm..
Sikender
+1  A: 

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
data integrity and scalability is main problem.. but i dont know .. in advance or in detailed
Sikender
A: 

Here is the answer .. i think i got the solution in brief

Sikender