cached_db 0.2.2

A NoSQL database with a built in cache layer.
Documentation
1
2
3
4
5
#[tokio::test]
async fn drop_col() {
    let db = cached_db::Database::new("db".to_string(), std::time::Duration::from_secs(60));
    db.drop_collection("test".to_string());
}