gcache 0.0.1

A cache group to accurate remote data access
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#![feature(impl_trait_in_assoc_type)]
#![feature(type_alias_impl_trait)]

mod hash;
mod node;
mod peer;
mod protocol;
mod source;
mod store;

pub use hash::ConsistentHash;
pub use node::Node;
pub use peer::Peer;
pub use protocol::Operation;
pub use source::DataSource;
pub use store::CacheStore;