cdb
cdb copied to clipboard
Pure Go implementation of D. J. Bernstein's cdb constant database library.
I added an interface to cdb.Get to port 'cdbget' to Golang. I also tweaked the cdb_test.go a little bit by implementing a []byte-backed io.WriteSeeker to avoid any filesystem related dependencies...
Python's cdb library has a handy function to iterate all keys in a cdb database: http://pilcrow.madison.wi.us/pycdb_doc.html It would be awesome to be able to do the same with go-cdb. (Also...
We use this patch at work which is mainly a change to the Dump() interface, which now calls DumpN(). DumpN() provides a means to perform partial dumps of n records...