WCF REST (WebHttpBinding) 能否遵循 PROGRAMMATIC 输出缓存策略?

发布于 2024-11-14 14:58:52 字数 147 浏览 3 评论 0原文

我了解有关 AspNetCacheProfileAttribute 的所有信息。但是有什么方法可以以编程方式挂接到缓存中吗?我尝试在 global.asax 中使用 Response.Cache ,这似乎设置了正确的客户端标头,但响应从未缓存在服务器上。

I know all about the AspNetCacheProfileAttribute. But is there any way to hook into the cache programmatically? I've tried using Response.Cache in global.asax which seems to set the correct client-side headers but the response is never cached on the server.

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

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

发布评论

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

评论(1

偷得浮生 2024-11-21 14:58:52

我认为除非您构建自己的解决方案,否则您无法做到这一点。我刚刚检查了 AspNetCahceProfileAttribute 的实现,它仅将内部 CachingParameterInspector 添加到操作调度程序。这有两个问题:

  • 参数检查器在服务主机启动时分配 = 在第一次请求期间,直到它无法更改为止
  • 参数检查器通过根据传递给 < 的配置文件名称从 web.config 文件中读取缓存配置在其构造函数中进行初始化code>AspNetCacheProfileAttribute

没有可用于修改已分配和配置的参数检查器的 API

I don't think you can do it unless you build your own solution. I just checked implementation of AspNetCahceProfileAttribute which only add internal CachingParameterInspector to the operation dispatcher. This has two problems:

  • Parameter inspector is assigned when the service host starts = during first request and until that it cannot be changed
  • Parameter inspector is initialized in its cosntructor by reading cache configuration from the web.config file based on the profile name passed to AspNetCacheProfileAttribute

There is no API available to modify already assigned and configured parameter inspector

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