Azure 是否支持 ASP.Net 应用程序的 HttpRuntime.Cache?

发布于 2024-10-08 03:34:15 字数 237 浏览 1 评论 0原文

我的 ASP.Net 应用程序使用 HTTPRuntime.Cache。如果我将其托管在 Azure 上:

  1. 假设 Azure 上不支持 HTTPRuntime.Cache,是否会出现任何编译错误
  2. 不会出现任何编译错误,但 HttpRunTime.Cache 对于任何请求的密钥始终返回 null
  3. HttpRuntime.Case 工作正常

我的哪一个假设是否正确?

My ASP.Net application uses HTTPRuntime.Cache. If I host it on Azure:

  1. Will there be any compilation errors assuming HTTPRuntime.Cache is not supported on Azure
  2. There will not be any compliation errors, but HttpRunTime.Cache always returns null for any requested key
  3. HttpRuntime.Case just works fine

Which of my assumptions is correct?

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

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

发布评论

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

评论(1

输什么也不输骨气 2024-10-15 03:34:15

您可以在 Azure Web 角色中使用 HttpRuntime.Cache,没有任何问题,因为我们也在使用它。需要记住的是,这个缓存是特定于机器的,如果您有多个实例运行,每个实例都有自己的缓存数据。

You can use HttpRuntime.Cache in Azure web role without any problem as we too are using it. Thing to keep in mind is that this Cache is machine specific, in case you have multiple instance running, each would have its own cache data.

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