A simple in-memory key-value datastore written in Rust,
cargo build -r --target-dir ./build
cd build/release
./lilredis FILE get KEY
./lilredis FILE delete KEY
./lilredis FILE insert KEY VALUE
./lilredis FILE update KEY VALUE
Inserting (test.db will be created if it doesnt already exist)
$ ./lilredis test.db insert hello world
$ ./lilredis test.db insert balance 4204
"4222"
Fetching a value with a key
$ ./lilredis test.db get hello
"world"
Updating a value with a key
$ ./lilredis test.db update balance 4242
"4242"
Deleting a value with a key
$ ./lilredis test.db delete hello
"world"