Are there any decent pure go options? It doesn't have to be sql
key/value or dbm style options are also acceptable for my purposes.
Jeremy
http://code.google.com/p/leveldb-go/
--
David
That's my project, but it's not finished yet.
In-memory tables work, and on-disk tables work, but writing an on-disk
table requires writing the keys in sorted order. What remains to be
written is the part that combines the two, plus the journaling, that
gives you an efficient disk-backed key/value store without requiring
key-sorted writes.
I aim to finish it once Go 1 is done.
-nu7
Yes, snappy-go is effectively complete. There's a relatively new
streaming format [0] that the Go code doesn't implement yet, but the
basic compress / decompress code is complete.
[0] http://code.google.com/p/snappy/source/browse/trunk/framing_format.txt