Skip to content

narodnik/libbitcoin-database

 
 

Repository files navigation

Build Status

Coverage Status

Libbitcoin Database

Bitcoin High Performance Blockchain Database

Make sure you have installed libbitcoin beforehand according to its build instructions.

$ ./autogen.sh
$ ./configure
$ make
$ sudo make install
$ sudo ldconfig

libbitcoin-database is now installed in /usr/local/.

About Libbitcoin Database

Libbitcoin Database is a custom database build directly on the operating system's memory-mapped file system. All primary tables and indexes are built on in-memory hash tables, resulting in constant-time lookups. The database uses sequence locking to avoid blocking the writer. This is ideal for a high performance blockchain server as reads are significantly more frequent than writes and yet writes must proceed without delay. The libbitcoin-blockchain library uses the database as its blockchain store.

Installation

Macintosh

Using Homebrew

Installing from Formula

Instead of building, libbitcoin-database can be installed from a formula:

$ brew install libbitcoin-database

About

Bitcoin High Performance Blockchain Database (version 3 only)

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • C++ 75.7%
  • M4 15.5%
  • Shell 4.8%
  • Makefile 1.5%
  • C 1.4%
  • Batchfile 1.1%