Find a file
Islam AbdelRahman f7ef1a6132 Include rest of dependencies in dependencies.sh
Summary:
This diff

  - Include the rest of the dependencies (kernel-headers, binutils, valgrind) in dependencies.sh
  - updtade zst to 0.4.7
  - It also fix a problem in clang scan build

Test Plan:
make check
USE_CLANG=1 make check
USE_CLANG=1 make analyze
coverage_test.sh

Reviewers: sdong, yhchiang, rven, andrewkr, kradhakrishnan

Reviewed By: kradhakrishnan

Subscribers: dhruba

Differential Revision: https://reviews.facebook.net/D53301
2016-01-25 14:35:04 -08:00
arcanist_util Cosmetic fixes and comments for the reader 2016-01-25 10:45:29 -08:00
build_tools Include rest of dependencies in dependencies.sh 2016-01-25 14:35:04 -08:00
coverage
db Updated GetProperty documentation 2016-01-25 14:04:55 -08:00
doc
examples
hdfs
include/rocksdb Updated GetProperty documentation 2016-01-25 14:04:55 -08:00
java
memtable
port
table Disallow SstFileWriter from creating empty sst files 2016-01-25 13:47:07 -08:00
third-party
tools Crash test to make kill decision for every kill point 2016-01-19 18:11:24 -08:00
util Add tests to make sure new DB or ColumnFamily options are settable through string 2016-01-22 16:18:44 -08:00
utilities
.arcconfig
.clang-format
.gitignore
.travis.yml
appveyor.yml
AUTHORS
CMakeLists.txt Split db_test.cc (part 1: properties) 2016-01-20 15:17:52 -08:00
CONTRIBUTING.md
DUMP_FORMAT.md
HISTORY.md Update HISTORY.mc for 4.4.0 2016-01-14 16:57:06 -08:00
INSTALL.md
LICENSE
Makefile Run unit tests in parallel to find failing tests 2016-01-25 14:04:27 -08:00
PATENTS
README.md
ROCKSDB_LITE.md
src.mk
thirdparty.inc
USERS.md
Vagrantfile
WINDOWS_PORT.md

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

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/