hamsterdb 1.0.3 (Default branch)

Source

hamsterdb is an embedded database engine written
in ANSI-C. It includes B+Trees with variable
length keys and records. It supports in-memory
databases and endian-independent files, database
cursors, multiple databases in one file, “record number” databases, and duplicate keys. hamsterdb is very fast and highly configurable. It compiles and
runs on Unix platforms, Linux, Microsoft Windows,
and Windows CE.


License: GNU General Public License (GPL)


Changes:
This release adds support for logging and
recovery. Whenever the database file is modified,
the changes are written to a binary log. In case
of a system crash, the recovery process will then
redo all un-committed changes. Also, a few minor
bugs were fixed, most of them in the unittest
suite.

Comments are closed.