How to create a Linux cluster for running physics simulations in java?

后端 未结 8 525
花落未央
花落未央 2021-02-03 15:07

I am developing a scientific application used to perform physical simulations. The algorithms used are O(n3), so for a large set of data it takes a very long time to process.

8条回答
  •  借酒劲吻你
    2021-02-03 15:15

    You should check out Hazelcast, simplest peer2peer (no centralized server) clustering solution for Java. Try Hazelcast Distributed ExecutorService for executing your code on the cluster.

    Regards,

    -talip

提交回复
热议问题