Log-structured, append-only database, stores and retrieves sequences of bytes ([u8]) of arbitrary length
The database file is db.kv
is an implementation of the Bitcask storage backend.
- Once the repository is cloned run
cargo build
- You will have a
kv_rs || kv_rs.exe
executable in thetarget/debug
directory.
You can also create your own db file. To use the built in db update FILE
to db.kv
kv_rs FILE get KEY
kv_rs FILE delete KEY
kv_rs FILE insert KEY VALUE
kv_rs FILE update KEY VALUE