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.
我正在构建一个 java/Scala 应用程序,它将部署在集群中的数百个节点中。我想到了下面的想法。而不是为我的服务构建rest api,节点将相互通信、查询和执行操作。我将简单地以这种方式使用akka actor,一个actor可以向其他actor发送消息,这将使我免于管理rest api甚至发现节点负载平衡等的整个过程(尽管不必是异步的)。
注意我知道使用actors作为异步编程手段而不是锁的动机我只是想知道我建议的用例是否真的是客家actors的一个很好的用例,或者我错过了什么谢谢。