riker

Easily build efficient, highly concurrent and resilient applications. An Actor Framework for Rust.

Github星跟踪图

Riker

Build Status
MIT licensed
crates.io
Released API docs

Overview

Riker is a framework for building modern, concurrent and resilient systems using the Rust language. Riker aims to make working with state and behavior in concurrent systems as easy and scalable as possible. The Actor Model has been chosen to realize this because of the familiar and inherent simplicity it provides while also providing strong guarantees that are easy to reason about. The Actor Model also provides a firm foundation for resilient systems through the use of the actor hierarchy and actor supervision.

Riker provides:

  • An Actor based execution runtime
  • Actor supervision to isolate and recover from failures
  • A modular system
  • Concurrency built on futures::execution::ThreadPool
  • Publish/Subscribe messaging via actor channels
  • Message scheduling
  • Out-of-the-box, configurable, non-blocking logging
  • Persistent actors using Event Sourcing
  • Command Query Responsiblily Separation (CQRS)
  • Easily run futures

Website, API Docs

Example

Cargo.toml:

[dependencies]
riker = "0.3.1"

main.rs:

use std::time::Duration;
use riker::actors::*;

struct MyActor;

// implement the Actor trait
impl Actor for MyActor {
    type Msg = String;

    fn recv(&mut self,
                _ctx: &Context<String>,
                msg: String,
                _sender: Sender) {

        println!("Received: {}", msg);
    }
}

// provide factory and props methods
impl MyActor {
    fn actor() -> Self {
        MyActor
    }

    fn props() -> BoxActorProd<MyActor> {
        Props::new(MyActor::actor)
    }
}

// start the system and create an actor
fn main() {
    let sys = ActorSystem::new().unwrap();

    let props = MyActor::props();
    let my_actor = sys.actor_of(props, "my-actor").unwrap();

    my_actor.tell("Hello my actor!".to_string(), None);

    std::thread::sleep(Duration::from_millis(500));
}

Associated Projects

Official crates that provide additional functionality:

Roadmap & Currently in Development

The next major theme on the project roadmap is clustering and location transparency:

  • Remote actors
  • Support for TCP and UDP
  • Clustering (using vector clocks)
  • Distributed data (CRDTs)

Why Riker

Riker is a full-featured actor model implementation that scales to hundreds or thousands of microservices and that equally can run exceptionally well on resource limited hardware to drive drones, IoT and robotics. The Rust language makes this possible.

Rust empowers developers with control over memory management, requiring no garbage collection and runtime overhead, while also providing modern semantics and expressive syntax such as the trait system. The result is a language that can solve problems equally for Web and IoT.

Riker adds to this by providing a famililar actor model API which in turn makes concurrent, resilent systems programming easy.

Rust Version

Riker is currently built using the latest Rust Nightly.

Contributing

Riker is looking for contributors - join the project! You don't need to be an expert in actors, concurrent systems, or even Rust. Great ideas come from everyone.

There are multiple ways to contribute:

  • Ask questions. Adding to the conversation is a great way to contribute. Find us on Gitter.
  • Documentation. Our aim is to make concurrent, resilient systems programming available to everyone and that starts with great Documentation.
  • Additions to Riker code base. Whether small or big, your Pull Request could make a difference.
  • Patterns, data storage and other supporting crates. We are happy to link to and provide full credit to external projects that provide support for databases in Riker's event storage model or implementations of common actor patterns.

主要指标

概览
名称与所有者riker-rs/riker
主编程语言Rust
编程语言Rust (语言数: 1)
平台
许可证MIT License
所有者活动
创建于2018-07-08 10:21:28
推送于2024-01-20 14:47:47
最后一次提交2021-01-09 14:28:36
发布数0
用户参与
星数1.1k
关注者数28
派生数68
提交数155
已启用问题?
问题数84
打开的问题数36
拉请求数74
打开的拉请求数9
关闭的拉请求数14
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?