Skip to content

Latest commit

 

History

History
10 lines (8 loc) · 312 Bytes

File metadata and controls

10 lines (8 loc) · 312 Bytes

bitcask-rs

example workflow name

use bitcask::BitCask;

let bitcask = BitCask::open("db", Config::default()).unwrap();
bitcask.put(vec![1, 2,3], vec![10, 11, 12, 13, 14, 15]);
let value  = bitcask.get(&vec![1, 2,3]).unwrap();