#db #simple #kvs #language #file-base

filedb

filedb is simple file-based data. It is implementation by rust lang.

3 releases

Uses old Rust 2015

0.1.2 Sep 20, 2018
0.1.1 Sep 12, 2018
0.1.0 Sep 9, 2018

#8 in #kvs

Download history 1/week @ 2024-02-19 8/week @ 2024-02-26 3/week @ 2024-03-11 65/week @ 2024-04-01

68 downloads per month

MIT license

13KB
227 lines

filedb

Build Status filedb at crates.io filedb at docs.rs

filedb is simple file-based data.
It becomes a rust version of the golang implementation of the following repository.

https://github.com/matryer/filedb

Install

Add the following to your

Cargo.toml

[package]
name = "some-project"
version = "1.0.0"
authors = ["my name <hoge@fuga.com>"]

[dependencies]
filedb = "0.1.2"

Usage

main.rs

extern crate filedb;

use filedb::FileDB;
use filedb::callback::*;

fn main() {
    let mut db = FileDB::connect("/tmp/db").unwrap();
    let mut col = match db.c("documents") {
        Ok(c) => c.lock().unwrap(),
        Err(err) => {
            println!("[filedb] failed instance col struct.");
            return;
        },
    };
    let res = col.for_each(|index, data| { 
        println!("index: {}, text: {}", index, String::from_utf8(&data).unwrap());

        ForEachResultValue::new(false)
    });

    match res {
        Ok(_) => println!("[filedb] success!"),
        Err(err) => println!("[filedb] errror... {:?}", err),
    }
}

Dependencies

~2–12MB
~123K SLoC