Find a file
Maysam Yabandeh 02a2c11732 Blog post for WritePrepared Txn
Summary:
Blog post to introduce the next generation of transaction engine at RocksDB.
Closes https://github.com/facebook/rocksdb/pull/3296

Differential Revision: D6612932

Pulled By: maysamyabandeh

fbshipit-source-id: 5bfa91ce84e937f5e4346bbda5a4725d0a7fd131
2017-12-20 11:42:15 -08:00
buckifier
build_tools Port 3 way SSE4.2 crc32c implementation from Folly 2017-12-19 18:26:49 -08:00
cache
cmake
coverage
db Disable need_log_sync on bg err 2017-12-20 08:12:24 -08:00
docs Blog post for WritePrepared Txn 2017-12-20 11:42:15 -08:00
env
examples
hdfs
include/rocksdb Remove incorrect comment 2017-12-18 17:56:47 -08:00
java Add a histogram stat for memtable flush 2017-12-15 18:57:00 -08:00
memtable
monitoring
options
port
table
third-party
tools Port 3 way SSE4.2 crc32c implementation from Folly 2017-12-19 18:26:49 -08:00
util FIXED: string buffers potentially too small to fit formatted write 2017-12-20 08:12:22 -08:00
utilities BlobDB: dump blob db options on open 2017-12-19 16:57:12 -08:00
.clang-format
.gitignore
.travis.yml
appveyor.yml
AUTHORS
CMakeLists.txt Port 3 way SSE4.2 crc32c implementation from Folly 2017-12-19 18:26:49 -08:00
CODE_OF_CONDUCT.md
CONTRIBUTING.md
COPYING
DEFAULT_OPTIONS_HISTORY.md
DUMP_FORMAT.md
HISTORY.md Port 3 way SSE4.2 crc32c implementation from Folly 2017-12-19 18:26:49 -08:00
INSTALL.md
issue_template.md
LANGUAGE-BINDINGS.md
LICENSE.Apache
LICENSE.leveldb
Makefile Port 3 way SSE4.2 crc32c implementation from Folly 2017-12-19 18:26:49 -08:00
README.md
ROCKSDB_LITE.md
src.mk
TARGETS WritePrepared Txn: make buck tests parallel 2017-12-18 14:42:09 -08:00
thirdparty.inc
USERS.md
Vagrantfile
WINDOWS_PORT.md

RocksDB: A Persistent Key-Value Store for Flash and RAM Storage

Build Status Build status

RocksDB is developed and maintained by Facebook Database Engineering Team. It is built on earlier work on LevelDB by Sanjay Ghemawat (sanjay@google.com) and Jeff Dean (jeff@google.com)

This code is a library that forms the core building block for a fast key value server, especially suited for storing data on flash drives. It has a Log-Structured-Merge-Database (LSM) design with flexible tradeoffs between Write-Amplification-Factor (WAF), Read-Amplification-Factor (RAF) and Space-Amplification-Factor (SAF). It has multi-threaded compactions, making it specially suitable for storing multiple terabytes of data in a single database.

Start with example usage here: https://github.com/facebook/rocksdb/tree/master/examples

See the github wiki for more explanation.

The public interface is in include/. Callers should not include or rely on the details of any other header files in this package. Those internal APIs may be changed without warning.

Design discussions are conducted in https://www.facebook.com/groups/rocksdb.dev/