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

sdb doesn't handle collisions #100

Closed crowell closed 7 years ago

crowell commented 8 years ago
$ ./sdb d bc=A
$ ./sdb d cB=B
$ ./sdb d bc
B
crowell commented 8 years ago

see #102 for a fix

radare commented 8 years ago

Can you confirm it works fine in memory and disk hashtable?

On 20 Jun 2016, at 16:34, Jeffrey Crowell notifications@github.com wrote:

$ ./sdb d bc=A $ ./sdb d cB=B $ ./sdb d bc B — You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub, or mute the thread.

crowell commented 8 years ago

yes, works in both memory and disk. passes the tests on travis as well.