Rod

Rust Object Database.

The decentralized social networking application Iris-messenger syncs over Rod peers by default.

Use

Install Rust first.

Install & run

cargo install rod rod start

Library

rust use rod::{Node, Config, Value}; let mut db = Node::new_with_config(Config { outgoing_websocket_peers: vec!["wss://some-server-to-sync.with/ws".to_string()], ..Config::default() }); let mut sub = db.get("greeting").on(); db.get("greeting").put("Hello World!".into()); if let Value::Text(str) = sub.recv().await.unwrap() { assert_eq!(&str, "Hello World!"); }

Status

15/5/2022:

Issues

Develop

cargo install cargo-watch RUST_LOG=debug cargo watch -x 'run -- start'

cargo test

Watch for code changes and re-run tests that contain the word "stats": RUST_LOG=debug cargo watch -x 'test stats'

cargo bench

Run on Heroku

heroku create --buildpack emk/rust git push heroku master

or:

Deploy