非 IIS 托管 WCF 服务的请求范围缓存
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过实现
IExtension
来扩展OperationContext
。通过实现扩展,您可以定义要在OperationContext
中存储的内容。 这里您有关于抽象请求状态的精彩博客。You can extend
OperationContext
by implementingIExtension<OperationContext>
. By implementing extension you can define what you want to store inOperationContext
. Here you have nice blog about abstracting request state.