-
I'm currently working on a Key-Value storage api. It was a good way to learn interface usage and testing :-) Check out the project and feel free to comment or contribute to the project https://github.com/go-gems/Jet
-
InfluxDB
InfluxDB high-performance time series database. Collect, organize, and act on massive volumes of high-resolution data to power real-time intelligent systems.
-
redix
a very simple pure key => value storage system that speaks Redis protocol with Postgres as storage engine and more
I don’t get the idea of your module layout: nested vs unnested packages, lowercase vs uppercase vs capitalized directory names. Check out https://github.com/alash3al/redix to get an idea about clean module design.
-
Hell, I even built a kv-database myself that I just announced some weeks ago, based on badgerDB: ld. It's API is the api I would say qualifies as a simple actual kv database api. KeyRange { String prefix, from, to, pattern (pattern may be a bit over the top) } The database is value agnostic
-
Thanks for this feedback. The first goal of this project was to learn how to write tests. Didn't get any idea about what to do to learn, and this idea came from a url shortener.