发布者-订阅者中的 WCF WS-duplex 可以容纳实时应用程序吗?
我想开发一个概念验证的 WCF 发布-订阅服务,该服务应容纳数千名用户和大量出版物(股票价格)。有谁有过这样的服务经验吗?它可以容纳实时应用程序吗?有人有高性能 WCF 发布-订阅的示例吗?
I want to develop a proof of concept WCF pub-sub service that should hold thousand of users and a lot of publications (stock rates). has anyone has experience which such kind of service? can it hold real time apps? does anyone has a sample for high performance WCF pub-sub?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我们将 Duplex WCF 与 Silverlight 客户端和 AJAX 客户端结合使用,并取得了良好的结果。
我们可以支持 >1000 个通过 Silverlight net.tcp 的用户和>100 个通过 Duplex HTTP 的用户
如果我们需要更多,我们会考虑迁移到云中......
请参阅这里一些很棒的示例
http://tomasz.janczuk.org/ 2009/11/wcf-nettcp-protocol-in-silverlight-4.html
We are using Duplex WCF with a Silverlight client and an AJAX client and have good results.
We can support >1000 users over Silverlight net.tcp and >100 over Duplex HTTP
If we need more, we think about moving into the cloud...
See this for some awesome samples
http://tomasz.janczuk.org/2009/11/wcf-nettcp-protocol-in-silverlight-4.html