Find a file
sdong 5f00af4570 DBTest.DestroyDBMetaDatabase: create DB directories if not exists
Summary: DBTest.DestroyDBMetaDatabase occasionally fails on my dev host, for file not existing. Always create directories to avoid that.

Test Plan: Run the test

Reviewers: rven, yhchiang, igor

Reviewed By: igor

Subscribers: dhruba, leveldb

Differential Revision: https://reviews.facebook.net/D33321
2015-02-11 16:16:50 -08:00
build_tools rocksdb: Enable scan-build static analysis 2015-02-03 21:43:06 -08:00
coverage
db DBTest.DestroyDBMetaDatabase: create DB directories if not exists 2015-02-11 16:16:50 -08:00
doc
examples Fix formatting 2015-02-09 09:53:30 -08:00
hdfs
include Remember whole key/prefix filtering on/off in SST file 2015-02-11 11:20:04 -08:00
java [RocksJava] Integrated changes from D33165 2015-02-10 21:12:27 +01:00
linters
port Fix stack trace on mac 2015-02-04 16:24:02 -08:00
table Remember whole key/prefix filtering on/off in SST file 2015-02-11 11:20:04 -08:00
third-party/rapidjson
tools Remove blob store from the codebase 2015-01-27 16:55:33 -08:00
util Perf Context to report DB mutex waiting time 2015-02-09 17:55:12 -08:00
utilities modify double type euqal compare in json_document.cc 2015-02-11 10:19:52 +08:00
.arcconfig
.clang-format
.gitignore Merge pull request #483 from adamretter/restructure-java-build 2015-02-09 14:53:11 +08:00
.travis.yml
AUTHORS
CONTRIBUTING.md
HISTORY.md Remember whole key/prefix filtering on/off in SST file 2015-02-11 11:20:04 -08:00
INSTALL.md
LICENSE
Makefile Merge pull request #483 from adamretter/restructure-java-build 2015-02-09 14:53:11 +08:00
PATENTS
README.md
ROCKSDB_LITE.md
Vagrantfile

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/