如何在 asp.netMvc 3 中管理状态中的通用集合
我正在获取列表中的 200 条记录。是asp.net mvc 3中共享目录下的用户控制。 我不想获取每个重定向这些记录。所以我需要以某种方式管理这个状态列表。我知道 mvc 3 中没有特定的状态管理技术。但是如何管理它。我的每个页面都有这个用户控件。 由于我使用的是Azuresql,因此对数据交易收费。我避免使用“会话”。 所以请引导正确的方向。
I am fetching the 200 records in List. It is user control under the shared directory in asp.net mvc 3.
I dont wat to fetch each redirection those records. so somehow i need to manage this List in state. i know there is no specific state management technic in the mvc 3. but how to manage this. my each page having this user control.
As i am using the Azuresql it, charges to data transactions. to i am avoiding to use the "Session".
So please guide in right direction.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
正确,没有。一种技术是使用缓存来避免访问数据库根据每个请求。仅当数据对于您网站的所有用户都是通用的时,这才有效。如果没有,Session 是另一种选择。
Correct, there isn't any. One technique is to use caching to avoid hitting the database on each request. This is valid only if the data is common to all users of your site. If not, Session is another alternative.