package riot

  1. Overview
  2. Docs
An actor-model multi-core scheduler for OCaml 5

Install

Dune Dependency

Authors

Maintainers

Sources

riot-0.0.8.tbz
sha256=4ac883cf9ddbf5b3084fd4372300dd07758acbdf1649df5f8a2794e35a99a5e1
sha512=52043592d567b66398d864f3f5c0a3f923007f0125f69a077a34677c60548d5bfb160074bc1847d1153d2c73eb592e2c2488d34fcde4a745fbe72804ad6fcab1

Description

Riot is an actor-model multi-core scheduler for OCaml 5. It brings Erlang-style concurrency to the language, where lighweight process communicate via message passing

README

riot logo

An actor-model multi-core scheduler for OCaml 5.

Quick Start | Tutorial | Reference   

Riot is an actor-model multi-core scheduler for OCaml 5. It brings Erlang-style concurrency to the language, where lightweight processes communicate via message-passing.

open Riot

type Message.t += Hello_world

let () =
  Riot.run @@ fun () ->
  let pid =
    spawn (fun () ->
        match receive () with
        | Hello_world ->
            Logger.info (fun f -> f "hello world from %a!" Pid.pp (self ()));
            shutdown ())
  in
  send pid Hello_world

At its core Riot aims to offer:

  • Automatic multi-core scheduling – when you spawn a new Riot process, it will automatically get allocated on a random scheduler.
  • Lightweight processes – spawn 10 or 10,000 processes as you see fit.
  • Fast, type-safe message passing
  • Selective receive expressions – when receiving messages, you can skim through a process mailbox to consume them in arbitrary order.
  • Process links and monitors to keep track of the lifecycle of processes

Riot also includes:

  • Supervisors to build process hierarchies
  • Logging and Telemetry designed to be multicore friendly
  • an Application interface to orchestrate startup/shutdown of systems
  • Generic Servers for designing encapsulated services like with Elixir's GenServer

Non-goals

At the same time, there's a few things that Riot is not, and does not aim to be.

Primarily, Riot is not a full port of the Erlang VM and it won't support several of its use-cases, like:

  • supporting Erlang or Elixir bytecode
  • hot-code reloading in live applications
  • function-call level tracing in live applications
  • ad-hoc distribution

Quick Start

opam install riot

After that, you can use any of the examples as a base for your app, and run them:

dune exec ./my_app.exe

Acknowledgments

Riot is the continuation of the work I started with Caramel, an Erlang-backend for the OCaml compiler.

It was heavily inspired by eio by the OCaml Multicore team and miou by Calascibetta Romain and the Robur team, as I learned more about Algebraic Effects. In particular the Proc_state is based on the State module in Miou.

And a thousand thanks to Calascibetta Romain and Antonio Monteiro for the discussions and feedback.

Dependencies (14)

  1. dune >= "3.11"
  2. uri >= "4.4.0"
  3. tls >= "0.17.3" & < "0.17.4"
  4. telemetry >= "0.0.1"
  5. randomconv >= "0.1.3" & < "0.2.0"
  6. ptime >= "1.1.0"
  7. ocaml >= "5.1" & < "5.3"
  8. mtime >= "2.0.0"
  9. mirage-crypto-rng >= "0.11.2" & < "1.0.0"
  10. mirage-crypto >= "0.11.2" & < "1.0.0"
  11. rio = version
  12. gluon = version
  13. config >= "0.0.1"
  14. bytestring = version

Dev Dependencies (4)

  1. x509 with-test & >= "0.16.5"
  2. odoc with-doc & >= "2.2.2"
  3. mdx with-test & >= "2.3.1"
  4. castore with-test & >= "0.0.2"

Used by (2)

  1. minttea < "0.0.2"
  2. nomad

Conflicts

None

OCaml

Innovation. Community. Security.