actori 0.9.0

Actor framework for Rust
1
2
3
4
5
6
7
8
9
10
11
12
# Actori Examples

The following examples complement the documentation and can help you understand how to use Actori:

1. [Ping]https://github.com/actori/actori/blob/master/examples/ping.rs - Basic example showing 2 actors playing ping/pong.
2. [Fibonnaci]https://github.com/actori/actori/blob/master/examples/fibonacci.rs - Demonstrates how to integrate a synchronous actor on a threadpool for cpu bound tasks.
3. [Ring]https://github.com/actori/actori/blob/master/examples/ring.rs - Ring benchmark inspired by Programming Erlang: Software for a Concurrent World. Send a M messages round a ring of N actors and benchmark.
4. [Chat]https://github.com/actori/actori/tree/master/examples/chat/src - More realistic application example of a chat server/client

## External Examples

Nathan Hawkins has made an great demonstration on how to integrate a synchronous database in an asynchronous application using actori. Here's the [video of the demonstration](https://youtu.be/W-hvnVeRJzs) and the [code](https://github.com/utsl42/actori-test).