Correct -- items in the cache might be accessed concurrently.
-Brock
DevelopMentor
http://staff.develop.com/ballen
> Hi all,
>
> I have an object that its sole function is to operate on other objects
> stored in the session. It maintains some non-volatile data that are to
> be shared by all clients.
>
> If I put this object into the cache, would method calls from different
> clients be handled in a serial manner (one blocking the other)? I am
> guessing the object won't get magically cloned into another thread but
> I thought I should find out for sure.
>
> Thanks in advance and sorry if it is a dumb question.
>