Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个仪表板类型的应用程序,它需要不断地从数百个 Atom 提要中获取数据。当前的 Webforms 实现async用于构建完整的页面,每个请求使用数百个线程(工作正常,因为硬件和网络非常快并且用户很少)。什么是构建 SignalR 替代品的好方法?
async
我已将 SignalR 与 KnockoutJS 一起使用,以便在 Web 环境中轻松推送到 UI 解决方案。
网上有几个完整的解决方案,像这样和那样,对我有很大帮助。
这样,您可以快速构建页面并在仍有数据或新数据出现时继续向其推送。在客户端使用 Knockout 将允许您将接收到的数据直接推送到仪表板中。
我在这里用进度报告做了一个例子:
https://github.com/dragouf/SignalR.Progress