为所有用户提供 ASP.NET 缓存

发布于 2025-01-08 22:11:59 字数 100 浏览 1 评论 0原文

我想在 ASP.NET 中缓存一些数据,以便在创建单个缓存后,所有用户都可以访问它。 HttpContext.Current.Cache 会这样做吗?或者我需要访问另一个上下文的缓存吗?

I'm wanting to cache some data in ASP.NET so that once a single cache is made, it is accesible to all users. Will HttpContext.Current.Cache do that, or is there another context's cache I need to be accessing?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

清旖 2025-01-15 22:11:59

HttpContext.Current.Cache 会这样做

?是的,这正是它的设计目的:存储可供应用程序的所有用户使用的数据。您还可以查看 @OutputCache 指令允许您在服务器或客户端上缓存整个 WebForms (aspx) 或片段 (ascx),这与将对象存储到服务器上的 HttpContext.Current.Cache 相反。

Will HttpContext.Current.Cache do that

Yes, that's exactly what it is designed for: store data that will be available to all users of the application. You may also take a look at the @OutputCache directive which allows you to cache entire WebForms (aspx) or fragments (ascx) on the server or on the client contrary to HttpContext.Current.Cache which stores objects onto the server.

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