in ASP.Net, are long running static operations a bottleneck?
- by Laramie
If a long running operation is defined in a frequently called static method, is it a bottleneck for other threads in an ASP.Net application trying to call the same method?
Does that only apply to methods with the "Synchronized" attribute?
I've searched and can't seem to find a definitive answer.