/cdbpp

C++ implementation of Constant Database (CDB++)

Primary LanguageCOtherNOASSERTION

            C++ implementation of Constant Database (CDB++)

                              Copyright (c) 2008,2009, Naoaki Okazaki

======================================================================
1. Introduction
======================================================================
Constant Database PlusPlus (CDB++) is a C++ implementation of hash
database specialized for serialization and retrieval of static
associations between keys and their values. This library implements
the data structure of the Constant Database proposed by Daniel J.
Bernstein. CDB++ also incorporates the fast and collision-resistant
hash function for strings (MurmurHash 2.0) implemented by Austin
Appleby. Since CDB++ is implemented in a single header file (cdbpp.h),
one can use the CDB++ API only by including cdbpp.h in a source code.

Refer to the CDB++ web site for more information.
http://www.chokkan.org/software/cdbpp/



======================================================================
2. License
======================================================================
CDB++ is distributed under the term of the modified BSD license.
Please refer to COPYING file in the distribution.



======================================================================
3. Acknowledgements
======================================================================
The data structure of the constant database was originally proposed
by Daniel J. Bernstein.
http://cr.yp.to/cdb.html

The source code of CDB++ includes MurmurHash 2.0 implemented by
Austin Appleby.
http://murmurhash.googlepages.com/

The CDB++ distribution contains "a portable stdint.h", which is
released by Paul Hsieh under the term of the modified BSD license, for
addressing the compatibility issue of Microsoft Visual Studio 2008.
The original code is available at:
http://www.azillionmonkeys.com/qed/pstdint.h

$Id: README 14 2008-07-09 15:15:00Z naoaki $