我正在开发一个分散的(服务器和客户端)应用程序架构,并使用 websockets 作为所有服务器和所有客户端之间的通信方法。多个主服务器联合。我在服务器端使用交叉开关,在客户端使用高速公路。在crossbar.io 网站的文档页面上,它说:
A Crossbar.io node is a single instance of the Crossbar.io software
running on a single machine. This Crossbar.io node can form a cluster
or federated network by connecting to other Crossbar.io nodes on the
same, or, more often on other machines.Externally, the cluster will
behave like a single instance.
While application components connect to specific nodes or are directly
hosted by specific nodes, this is transparent from an application
point of view: application components are agnostic to how and where
they are deployed.
在文档页面或网络上搜索有关如何实现此架构的方向时,我都没有得到任何结果。这个架构是如何实现的?