net-concurrent

Concurrent over the network execution library

http://phaul.hobby-site.org/node/4123

Latest on Hackage:0.1.0

This package is not currently in any snapshots. If you're interested in using it, we recommend adding it to Stackage Nightly. Doing so will make builds more reliable, and allow stackage.org to host generated Haddocks.

BSD-3-Clause licensed and maintained by Paul Sonkoly

net-concurrent is a simple haskell library for doing parallel computation on several computers using the network. There is a single master process and many slave processes. Communication is between the master and the slaves, for simplicity slaves never communicate with each other. Communication is done using NVars, network variables. The NVar api is very similar to MVar. These are stored in the master process and shared between all processes in the system. Slave nodes can read and write these NVar variables which results in network transactions with the master.