![]() | |
![]() |
| | Thread Tools | Search this Thread | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
Dear folks, I am using ASP.Net cache in my web application. is there any maximum amount of concurrent access allowed for a cache. is there any bottle neck that is possible when nearyly 100+ concurrent users are accessing the cache |
#3
| |||
| |||
|
|
Sundararajan wrote: Dear folks, I am using ASP.Net cache in my web application. is there any maximum amount of concurrent access allowed for a cache. is there any bottle neck that is possible when nearyly 100+ concurrent users are accessing the cache Since Cache is thread-safe, there is of course some sort of lock contention involved. AFAIK the implementation uses ReaderWriterLocks, which is fine as long as you're mostly reading data, but that doesn't really scale well if you have many writers. Cheers, -- http://www.joergjooss.de mailto:news-reply (AT) joergjooss (DOT) de |
#4
| |||
| |||
|
|
Are you using whidbey? If not, the readwriter seems to be suffering from problems under load, expecially if there are frequent writes. |
![]() |
| Thread Tools | Search this Thread |
| Display Modes | |
| |