https://github.com/d-led/go-actors-sleepsort
trying out various golang actors implementations
https://github.com/d-led/go-actors-sleepsort
Last synced: 11 months ago
JSON representation
trying out various golang actors implementations
- Host: GitHub
- URL: https://github.com/d-led/go-actors-sleepsort
- Owner: d-led
- License: unlicense
- Created: 2022-04-04T20:19:12.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2024-04-02T13:37:24.000Z (about 2 years ago)
- Last Synced: 2025-02-15T23:44:27.302Z (over 1 year ago)
- Language: Go
- Size: 104 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# go-actors-sleepsort
trying out various golang actors implementations to: [sleepsort](https://rosettacode.org/wiki/Sorting_algorithms/Sleep_sort#Go)
## Input for the Quest
[language:go actor](https://github.com/search?q=language%3Ago+actor)
## Demo
- [run.sh](run.sh)
- [](https://github.com/d-led/go-actors-sleepsort/actions/workflows/demo.yml)
## Proto Actor Go
- [github.com/asynkron/protoactor-go](https://github.com/asynkron/protoactor-go)
- [protoactor-sleepsort](protoactor-sleepsort)
- details
- distribution
- [multi-language](https://github.com/asynkron)
## Ergo
- [github.com/ergo-services/ergo](https://github.com/ergo-services/ergo)
- [ergo-sleepsort](ergo-sleepsort)
- details
- distribution compatible with Erlang/OTP nodes
- [sagas](https://github.com/ergo-services/ergo/tree/master/examples/gensaga)
## Molizen
- [github.com/sanposhiho/molizen](https://github.com/sanposhiho/molizen)
- the first spotted using code generation
- [molizen-sleepsort](molizen-sleepsort)
- details
- doesn't have a native scheduled send ('after')
- uses a code generator for type-safe actor proxies
## Phony
- [github.com/Arceliar/phony](https://github.com/Arceliar/phony)
- [phony-sleepsort](phony-sleepsort)
- details
- minimalistic, runtime-local implementation
- embedding provides actor functionality on top of state structs
- actor behavior safety guarantees must be met deliberately using boilerplate calls
## Queue
- [Azer0s/quacktors](https://github.com/Azer0s/quacktors)
- requires [qpmd?](https://github.com/Azer0s/qpmd)