laminarmq 0.0.5

A scalable, distributed message queue powered by a segmented, partitioned, replicated and immutable log.
Documentation
1
2
3
4
5
6
7
8
//! Module providing different storage backend implementations.

#[cfg(target_os = "linux")]
pub mod glommio;
pub mod in_mem;
pub mod tokio;

pub mod common;