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.
我有一些需要很长时间才能加载的大数据(字典、索引等)。那么我如何才能预加载这些数据,然后在对我的站点的每个请求中使用(当然不加载)?
这个问题太抽象了,但是如果内存不是一个约束,那么您可能会考虑在 application_start() 执行期间将数据预加载到等效数据结构的静态对象中。但是,如果数据被更改,请确保重新加载数据。观察者设计模式或类似的设计模式可能对这些场景很方便。