ASPX WebMethod 似乎没有缓存结果
我需要在 aspx 页面上使用几个方法来缓存其结果,以避免大量访问数据库。我添加了相关的 WebMethod 属性,但尽管代码运行了,但方法并未缓存其结果。
问题是,我 a) 不确定这是否可以首先完成,如果可以的话 b) 是否需要在 aspx 页面上做一些特殊的事情才能完成这项工作。
页面的缓存结果是否仅在页面的生命周期内有效?我需要在许多页面请求中缓存数据。
I need a couple of methods on an aspx page to cache their results to avoid lots of going to the database. I added the relevant WebMethod attributes but although the code runs, the methods are not caching their results.
The trouble is, I'm a) not sure whether this can be done in the first place, and if it is then b) whether there is something particular you need to do on aspx pages to make this work.
Does a page's cached results only last the lifetime of the page? I need the data to be cached across many page requests.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将响应对象缓存在您的 Web 服务中。
http://msdn.microsoft.com/en -us/library/6hbbsfk6(v=VS.100).aspx
编辑:
这看起来很有希望:
http://support.microsoft.com/kb/318299
Cache the response objects in your web service.
http://msdn.microsoft.com/en-us/library/6hbbsfk6(v=VS.100).aspx
EDIT:
This looks promising:
http://support.microsoft.com/kb/318299