ASPX WebMethod 似乎没有缓存结果

发布于 2024-10-12 12:12:59 字数 204 浏览 8 评论 0原文

我需要在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

乜一 2024-10-19 12:12:59

将响应对象缓存在您的 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文