keyvaluehash

Pure Haskell key/value store implementation

Latest on Hackage:0.3.1.2

This package is not currently in any snapshots. If you're interested in using it, we recommend adding it to Stackage Nightly. Doing so will make builds more reliable, and allow stackage.org to host generated Haddocks.

BSD-3-Clause licensed by Eyal Lotem
Maintained by [email protected]

A simple bytestring key/value store implemented in terms of hash table over a file. It cannot yet grow/shrink the hash table as needed, nor does it free old unused (key,value) pair storage. Mostly useful for applications that need not worry about the size of their persistent store. Reduces dependency hell.