Sorry for coming back to the desk after a bit of a gap. My R&D pipeline has been overflowing, and
Continue readingState Management Best Practices
The following table highlights the main state management issues: State Management Issues Implications Stateful components Holds server resources and can cause server affinity, which reduces scalability options. Use of an in-memory state store Limits scalability due to server affinity. Storing state in the database or server when the client is a better choice Increased server resource utilization; limited server scalability. Storing state on the server when a database is a better choice In-process and local state stored on the Web server limits the ability of the Web application to run in a Web farm. Large amounts of state
Continue reading