hactors alternatives and similar packages
Based on the "Concurrency" category.
Alternatively, view hactors 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 hactors or a related project?
README
About
This library is about to implement the actor model on top of the GHC's concurrency. Actors works as VM's lightweight threads and messages works with STM's channels. There is also a swarms implementation, that is, a groups of processes sharing a message box, and a mapReduce combinator implemented using swarms.
Usage
The Control.Concurrent.Actor module provides the API that mimics Erlang's concurrency primitives. See the haddocks for more details.
Issues
Timeouts? Process linking? Monitors? Kill siganl handling?
Implement the flush funtion (to show already received messages)?
Write more examples.