非 IIS 托管 WCF 服务的请求范围缓存

发布于 2024-10-14 21:02:52 字数 127 浏览 1 评论 0原文

我正在使用 IIS 托管的 WCF 服务,并通过 Http 上下文进行请求范围的缓存。这对于缓存 EF 数据上下文很有用。现在我想切换到另一个没有 Http 上下文的非 IIS 托管环境。在一般 WCF 环境中实现请求范围缓存的选项有哪些。

I am using IIS hosted WCF services with request-scoped caching through the Http context. This is useful for example to cache an EF data context. Now I want to switch to another Non-IIS hosted environment without Http context. What are the options to implement a request scoped caching in general WCF environments.

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

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

发布评论

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

评论(1

空名 2024-10-21 21:02:52

您可以通过实现 IExtension 来扩展 OperationContext。通过实现扩展,您可以定义要在 OperationContext 中存储的内容。 这里您有关于抽象请求状态的精彩博客。

You can extend OperationContext by implementing IExtension<OperationContext>. By implementing extension you can define what you want to store in OperationContext. Here you have nice blog about abstracting request state.

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