https://github.com/influx6/actorkit
Simple yet powerful actor model in golang for message passing based applications [Work in Progress]
https://github.com/influx6/actorkit
actor-library actor-model actors
Last synced: 3 months ago
JSON representation
Simple yet powerful actor model in golang for message passing based applications [Work in Progress]
- Host: GitHub
- URL: https://github.com/influx6/actorkit
- Owner: influx6
- License: mit
- Created: 2018-05-11T23:04:30.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-02-17T15:24:44.000Z (over 6 years ago)
- Last Synced: 2024-04-16T08:57:38.781Z (over 1 year ago)
- Topics: actor-library, actor-model, actors
- Language: Go
- Homepage:
- Size: 5.17 MB
- Stars: 19
- Watchers: 3
- Forks: 2
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Actorkit
------------
[](https://goreportcard.com/report/github.com/gokit/actorkit)
[](https://travis-ci.org/gokit/actorkit#)Actorkit is an experiement geared towards the fusion of actor based concurrency programming with different useful software architectural principles to development
a flexible, viable distributable, scalable foundation for building resilient services.
It takes inspirations from projects like [Akka](https://akka.io) and [Proto.Actor](http://proto.actor/) and others.## Install
```bash
go get -u github.com/gokit/actorkit
```## Architecture

Actorkit is a fusion of CQRS, grains from Microsoft Orleans and actor-based message-passing principles within a
a single library geared towards the creation of scalable, distributed and resilient applications built on the concept of transparent,
addressable processing units or actors. It embraces the very nature of chaotic, failing system which is
most transparent to the developer allowing the focus on creating systems able to resiliently function in such
environments. These details become part of the architecture and not just a after development process managemeent routine.