23 lines
586 B
Markdown
23 lines
586 B
Markdown
|
# zordfsdb
|
||
|
|
||
|
Simple filesystem based key/value db. Provided as golang lib.
|
||
|
|
||
|
## Configuration
|
||
|
|
||
|
Init root directory
|
||
|
|
||
|
## Supported command
|
||
|
|
||
|
* GET - to get value. Depends on return type. Can be single value or map (to object or to list of object)
|
||
|
* INS - insert object into list
|
||
|
* SAVE - update value or object. Depends on path
|
||
|
* INC - increase abcex value
|
||
|
* DEC - decrease abcex value
|
||
|
* NOW - save current datetime
|
||
|
* DEL - delete
|
||
|
|
||
|
## dictionary
|
||
|
|
||
|
* object - directory of key/value
|
||
|
* list - directory of objects named by abcex as key
|
||
|
* path - path to key or object or list
|