Includes experimental C interface for FASTER. It currently assumes the KEY,VALUE types are u64. This wrapper is only focusing on Linux support.
It is probably a good idea to make sure you can compile the C++ version before you start playing around with this wrapper.
Down below are some example operations.
```rust,norun extern crate fasterkvs;
use faster_kvs::*;
const TABLESIZE: u64 = 1 << 14; const LOGSIZE: u64 = 17179869184;
fn main() { if let Ok(store) = FasterKv::new(TABLESIZE, LOGSIZE, String::from("storage_dir")) { let key: u64 = 1; let value: u64 = 1000;
// Upsert
store.upsert(key, value);
// Read-Modify-Write
let incr: u64 = 50;
let rmw = store.rmw(key, incr);
assert_eq!(rmw, status::OK);
// Read
let (status, recv) = store.read(key);
assert_eq!(read, status::OK);
assert_eq!(recv.recv().unwrap(), value);
let bad_key: u64 = 2;
let bad_read = store.read(bad_key);
assert_eq!(bad_read, status::NOT_FOUND);
} } ```