并行java库
我正在寻找并行的 Java 库/应用程序以及可以并行查询的功能对象。也就是说,存在可以从不同线程进行多种类型操作的对象,并且这些操作将被同步。
如果有人能告诉我在哪里可以找到此类应用程序,那将会很有帮助。
编辑:实际上,语言并不那么重要,所以 C++,Python,任何都受欢迎
I'm looking for Java libraries/applications which are parallel and feature objects that can be queried in parallel. That is, there is/are objects in which multiple types of operations can be made from different threads and these will be synchronized.
It would be helpful if someone could ideas of where I could find such applications as well.
EDIT: Actually, language doesn't matter so much, so C++, Python, anything is welcome
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
在我看来,基于 Actor 的并发是最好的(当然取决于你在做什么)
请参阅此 一些 JVM actor 选项的文章。
我最喜欢的是 AKKA
In my opinion Actor based concurrency is the best (depending on what you are doing of course)
See this article for som JVM actor options.
My favourite is AKKA