如何同步 C# 应用程序内存中对象

发布于 2024-09-01 08:38:34 字数 110 浏览 5 评论 0原文

我有一个 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 技术交流群。

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

发布评论

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

评论(1

冷了相思 2024-09-08 08:38:34

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.

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