Galvanize: Pure Rust CDB library Build Status

Manipulate DJB's Constant Database files. These are 2 level disk-based hash tables that efficiently handle thousands of keys, while remaining space-efficient.

Constant databases have the desirable property of requiring low overhead to open.

What is it?

cdb is a fast, reliable, simple package for creating and reading constant databases. Its database structure provides several features:

cdb is designed to be used in mission-critical applications like e-mail. Database replacement is safe against system crashes. Readers don't have to pause during a rewrite.


Originally based on dw/python-pure-cdb (Pure Python CDB Library).