Find a file
agiardullo 0feeee6433 Fix memtable_list_test
Summary:
Test failing due to a missing directory caused by a simple bug (did not run into this on my dev box since the path already existed).

We should look into deleting test::TmpDir() before each test run.

Test Plan: ran test

Reviewers: igor, yhchiang, meyering, sdong

Reviewed By: sdong

Subscribers: dhruba, leveldb

Differential Revision: https://reviews.facebook.net/D36831
2015-04-09 22:11:35 -07:00
arcanist_util
build_tools Remove use of whole-archive to include jemalloc 2015-04-09 15:10:53 -07:00
coverage
db Fix memtable_list_test 2015-04-09 22:11:35 -07:00
doc
examples
hdfs
include Add thread-safety documentation to MemTable and related classes 2015-04-08 21:10:35 -07:00
java
port
table
third-party
tools Script to check whether RocksDB can read DB generated by previous releases and vice versa 2015-04-08 16:04:59 -07:00
util Fixed xfunc related compile errors in ROCKSDB_LITE 2015-04-09 21:05:18 -07:00
utilities Fix the compilation error in flashcache.cc on Mac 2015-04-07 15:27:23 -07:00
.arcconfig
.clang-format
.gitignore
.travis.yml
AUTHORS
CONTRIBUTING.md
HISTORY.md
INSTALL.md
LICENSE
Makefile MemTableList tests 2015-04-09 18:01:11 -07:00
PATENTS
README.md
ROCKSDB_LITE.md
src.mk
USERS.md Fix formatting of USERS.md 2015-04-08 08:52:10 -07:00
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/