sdb icon indicating copy to clipboard operation
sdb copied to clipboard

Simple and fast string based key-value database with support for arrays and json

Results 35 sdb issues
Sort by recently updated
recently updated
newest added

I'm a Python developer but I need some answers. 1) Can I use sdb ? 2) sdb has a any Python module ?

https://github.com/radareorg/sdb/runs/6325791017?check_suite_focus=true

https://github.com/radareorg/radare2/security/code-scanning/287?query=ref%3Arefs%2Fheads%2Fmaster

I added SDB to my encyclopedia of databases: https://dbdb.io/db/sdb Is there a logo for SDB that I can use? -- Andy

I think we should introduce new APIs to increment/decrement the ref value of a Sdb. This can be very useful in radare2 where sdb are passed around and sometimes it's...

``` $ ./sdb - "foo= bar" "foo" bar $ ./sdb - "foo = bar" "foo" $ ```

We have dict for this, but it shouldnt be the way to go. in the Attic there are some other implementations of the same thing done in different ways.

this will speedup iterating over lists because it will not require to dereference pointers

i would go for ht. this means that r2 cant use this api

During the implementation of the command `zos` in r2 (save zigns), it's been found that syncing from mem to file was buggy. Current workaround: ```c Sdb *db = sdb_new (NULL,...