sqlx-cache 0.1.1

Caching system built on top of SQLX designed for efficient storage and retrieval of entities in a database.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub extern crate sqlx;
pub mod cache_manager;
pub mod db_cache;
pub mod db_cache_config;
pub mod cache_task;
pub mod db_commands;
pub mod cache_manager_config;
pub mod utils;