Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jberryman/simple-actors
A Haskell library providing an idiomatic implementation of the actor model of concurrency
https://github.com/jberryman/simple-actors
Last synced: 3 months ago
JSON representation
A Haskell library providing an idiomatic implementation of the actor model of concurrency
- Host: GitHub
- URL: https://github.com/jberryman/simple-actors
- Owner: jberryman
- License: bsd-3-clause
- Created: 2011-09-03T02:01:27.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2012-08-22T03:22:52.000Z (over 12 years ago)
- Last Synced: 2023-03-11T18:03:25.253Z (almost 2 years ago)
- Language: Haskell
- Homepage:
- Size: 281 KB
- Stars: 13
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this 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](http://en.wikipedia.org/wiki/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](http://hackage.haskell.org/package/simple-actors).