» kv
…is a simple CLI-accessible key value store written in Chicken-Scheme and using CSV as a backend.
While this sort of program may be useful for storing some commonly required data in a easily accessible fashion its primary purpose for me is to be used as a Chicken-Scheme tryout platform.
The MIT licensed source code may be found on Github or cgit.
Usage example
Command | Description |
---|---|
kv [show] |
List all stores |
kv [show] test |
List all keys of store test |
kv [show] test dummy |
Print value of key dummy in store test |
kv all |
List all keys and values of all stores |
kv all test |
List all keys and values of store test |
kv all test dummy |
Display key and value of key dummy in store test |
kv write test dummy example |
Write value example to key dummy in store test |
kv delete test dummy |
Delete key dummy of store test |
kv rename test dummy dummy2 |
Rename key dummy of store test to dummy2 |