Bitcask

Bitcask
Developer(s) Basho Technologies
Development status Active
Written in Erlang
Operating system Linux, BSD, Mac OS X, Solaris
Platform IA-32, x86-64
License Apache License 2.0
Website docs.basho.com/riak/latest/ops/advanced/backends/bitcask/

Bitcask is an Erlang application that provides an API for storing and retrieving key/value data into a log-structured hash table. The design owes a lot to the principles found in log-structured file systems and draws inspiration from a number of designs that involve log file merging.

Strengths

Bitcask has a number of advantages owing to its write-once, append-only on-disk data-format and its use of an in-memory hash-table of keys for lookups:

Weakness

Because Bitcask keeps all keys in memory at all times, the system must have enough memory to contain the entire keyspace in addition to other operational components and the operating system's file-system buffers.

External links

This article is issued from Wikipedia - version of the 11/3/2016. The text is available under the Creative Commons Attribution/Share Alike but additional terms may apply for the media files.