Go to file
Maysam Yabandeh 7fdf735d5d Pinnableslice examples and blog post
Summary: Closes https://github.com/facebook/rocksdb/pull/2788

Differential Revision: D5700189

Pulled By: maysamyabandeh

fbshipit-source-id: 6f043e652093ff904e52f6d35190855781b87673
2017-08-24 12:26:07 -07:00
buckifier rocksdb: make buildable on aarch64 2017-08-13 17:13:54 -07:00
build_tools Update RocksDBCommonHelper to use escapeshellarg 2017-08-15 06:56:31 -07:00
cache Circumvent ASAN false positive 2017-08-21 12:10:43 -07:00
cmake/modules cmake: support more compression type 2017-08-13 21:47:45 -07:00
coverage
db support disabling checksum in block-based table 2017-08-23 19:40:47 -07:00
docs Pinnableslice examples and blog post 2017-08-24 12:26:07 -07:00
env
examples Pinnableslice examples and blog post 2017-08-24 12:26:07 -07:00
hdfs
include/rocksdb support disabling checksum in block-based table 2017-08-23 19:40:47 -07:00
java Provide byte[] version of SstFileWriter.merge to reduce GC Stall 2017-08-22 12:55:24 -07:00
memtable
monitoring Scale histogram bucket size by constant factor 2017-08-21 17:10:40 -07:00
options fix some misspellings 2017-08-16 21:57:20 -07:00
port
table support disabling checksum in block-based table 2017-08-23 19:40:47 -07:00
third-party
tools support disabling checksum in block-based table 2017-08-23 19:40:47 -07:00
util
utilities Add unit test for WritePrepared skeleton 2017-08-23 13:56:03 -07:00
.clang-format
.gitignore Remove leftover references to phutil_module_cache 2017-08-23 12:12:21 -07:00
.travis.yml
AUTHORS
CMakeLists.txt CMake improvements 2017-08-21 14:56:50 -07:00
CONTRIBUTING.md
COPYING
DEFAULT_OPTIONS_HISTORY.md
DUMP_FORMAT.md
HISTORY.md support disabling checksum in block-based table 2017-08-23 19:40:47 -07:00
INSTALL.md
LANGUAGE-BINDINGS.md LANGUAGE-BINDINGS.md: add another rust binding 2017-08-23 12:12:21 -07:00
LICENSE.Apache
LICENSE.leveldb
Makefile Overload new[] to properly align LRUCacheShard 2017-08-14 14:41:56 -07:00
README.md
ROCKSDB_LITE.md
TARGETS rocksdb: make buildable on aarch64 2017-08-13 17:13:54 -07:00
USERS.md
Vagrantfile
WINDOWS_PORT.md
appveyor.yml
src.mk
thirdparty.inc

README.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/