unbase 0.0.2

Unbase intends to be a causal, coordination-free distributed data-persistence and application framework. It is fundamentally reactive, fault tolerant, and decentralized.
Documentation
1
2
3
4
5
6
7
8
9
use subject::Subject;

mod fixed;
pub use self::fixed::IndexFixed;

trait Index{
    fn insert(&self, u64, Subject);
    fn get(&self, u64) -> Option<Subject>;
}