Singleton object in IIS Web Garden
Posted
by Anwar Chandra
on Stack Overflow
See other posts from Stack Overflow
or by Anwar Chandra
Published on 2010-05-23T19:53:10Z
Indexed on
2010/05/23
20:01 UTC
Read the original article
Hit count: 451
I have a lot of Singleton implementation in asp.net application and want to move my application to IIS Web Garden environment for some performance reasons.
CMIIW, moving to IIS Web Garden with n worker process, there will be one singleton object created in each worker process, which make it not a single object anymore because n > 1.
can I make all those singleton objects, singleton again in IIS Web Garden?
© Stack Overflow or respective owner