I have some questions about scaling with ASP.NET environment. I'm in the start to build an application that I hope will get a lots of users, and if that's the case I need to know more about scaling.
It's heavly depends on user generated content, other users needs to be notified when content change by pooling AJAX calls, WebSockets it's not an option.
I know the basic stuff don't read from DB, put in memory, but how to do this in a webfarm?
How should the system handle if user content are created on Webserver 1, and the other users are request objects from Webserver 2. How does we notify the users without haveing to go thru DB? Making a lots of internal requests? Using some distributed cache?
