@hackage distributed-closure0.5.0.0
Serializable closures for distributed programming.
Installation
Dependencies (6)
- base >=4.11 && <5
- binary >=0.7.5
- bytestring >=0.10
- constraints >=0.4
- syb >=0.5
- template-haskell >=2.10 Show all…
Dependents (7)
@hackage/jvm-streaming, @hackage/inline-java, @hackage/jvm-batching, @hackage/deptrack-devops, @hackage/jvm, @hackage/distributed-fork, Show all…
Package Flags
dev
(off by default)
Turn on development settings.
distributed-closure
Leverage the -XStaticPointers extension
from GHC 7.10 onwards for distributed programming using lightweight
serializable closures. This package implements a serializable
closure abstraction on top of static pointers. Serializable closures
can be shipped around a computer cluster. This is useful for
implementing intuitive and modular distributed applications. See
this blog post for a hands on introduction
and this paper for the original motivation.
Example
In GHC 8 and above, remoting a computation on another node using this library goes along the lines of
data NodeId
-- Assume we're given a spaw primitive.
spawn :: NodeId -> Closure (IO ()) -> IO ()
-- A computation to remote on another node.
hello :: String -> IO ()
hello name = putStrLn ("Hello, " ++ name)
main = do
name <- getLine
spawn "someAddress" (static hello `cap` name)
An example of sending static pointers and closures through a communication channel is provided under examples/ClientServer.hs in the source repository.
distributed-closure does not implement sending/receiving/spawning
closures - that's left for higher-level frameworks. Only closure
creation, composition and (de)serialization.