sixth_database 1.0.5

In memory serializing to disk Database. Mimics FourthDatabase(C#) and FifthDatabase(C++), SixthDatabase is for Rust using Serde.
Documentation
sixth_database-1.0.5 has been yanked.

In memory serializing to disk Database. Mimics FourthDatabase(C#) and FifthDatabase(C++) SixthDatabase is for Rust using Serde.


Requirements

[dependencies]
sixth_database = "1.0"
serde = { version = "1.0", features = ["derive"] }
serde_derive = { version = "1.0"}
bincode = {version = "1.0"}

Usage


// If the usage example stops working
// look in SixthDatabaseTest's project under main.rs
// for the current working example.

extern crate sixth_database;
use sixth_database::Database;

fn main() {
    let example: Arc<Mutex<Database<String>>> = Database::new("example_db_name");

    {
        let mut test = thread_test.lock().expect("Failed to obtain 6db lock");
        test.data.push("test2".to_string());
    }

}

Getting help

File a ticket at https://gitlab.com/Wepwawet/sixthdatabase/issues/new

If you use this and want your project to be featured here, open a ticket.

C++ FifthDatabase

C# FourthDatabase