Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 MVC3 应用程序,我希望它能够为大量用户请求提供服务。我想使用 IoC 容器,但不希望它降低我的应用程序的性能。
我读到我不应该担心,因为唯一的开销是在初始化时。但是对于 MVC3 应用程序来说,这不是每次用户请求新网页的时候吗?
不,不是每次用户请求页面时。IoC 容器应在应用程序的生命周期内配置一次(例如,在您的全局 Application_Start 事件处理程序中),然后在应用程序运行时不需要任何其他配置。