fornix 0.4.0

Knowledge storage, retrieval, and graph infrastructure for cognitive systems
Documentation
1
2
3
4
5
6
7
8
9
//! Cache adapter implementations.

pub mod memory;
pub mod null;
pub mod postgres;
pub mod redis;

pub use memory::MemoryCacheAdapter;
pub use null::NullCacheAdapter;