radareorg / sdb

Simple and fast string based key-value database with support for arrays and json
https://www.radare.org/
MIT License
218 stars 62 forks source link

Dump/Load nested SDBs in JSON format #88

Open radare opened 9 years ago

radare commented 9 years ago
foo=bar
cow=123
low={"pop":123,"jiji":456}

will be dumped as:

{"foo":"bar","cow":123,"low":{"pop":123,"jiji",456}}

The nested Sdbs thing should be discussed

jvoisin commented 9 years ago

Looks good to me