如何同步 C# 应用程序内存中对象
我有一个 WCF 服务,需要使用 NLB(Windows 网络负载均衡器)进行负载均衡。因此,我需要一个 Dictionary 对象来在 WCF 服务的所有实例之间同步。
最好的方法是什么?
I have a WCF service to be load balanced with NLB (Windows Network Load Balancer). So I need a Dictionary object to be synced across all the instances of the WCF service.
What is the best possible way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
WCF 服务本质上是无状态的。您可以打开经典模式并使用会话,但会话必须存储在数据库中。您可以跨服务器共享内存中的对象。
WCF Services are by nature, stateless. You can turn on classic mode and use session, but session will have to be stored in the database. You can share in-memory objects across servers.