simple-actors alternatives and similar packages
Based on the "Concurrency" category.
Alternatively, view simple-actors alternatives based on common mentions on social networks and blogs.
-
haxl
A Haskell library that simplifies access to remote data, such as databases or web-based services. -
unagi-chan
A haskell library implementing fast and scalable concurrent queues for x86, with a Chan-like API -
timers
Simple package that implements timers. Both "one-shot" and "repeating" timers are implemented.
CodeRabbit: AI Code Reviews for Developers
Do you think we are missing an alternative of simple-actors or a related project?
README
What's this all about?
simple-actors
is a haskell eDSL for writing highly-structured concurrent
programs based on the so-called
Actor Model. It provides a far
more structured way of organizing concurrent code than ad-hoc use of Chan
,
forkIO
and MVar
s.
The library was designed to make easy to implement message-passing algorithms and the like, but as I work on it and learn more about distributed computing, I'm hoping it can be used across the network eventually.
How do I do it?
Install with a
cabal install simple-actors
and check out the docs here.