Find a file
sdong dd726a59ef Bump Version Number to 3.8
Summary: As tittle.

Test Plan: Not needed.

Reviewers: ljin, igor, yhchiang, rven, fpi

Reviewed By: fpi

Subscribers: leveldb, fpi, dhruba

Differential Revision: https://reviews.facebook.net/D28629
2014-11-10 12:10:56 -08:00
build_tools
coverage
db Optimize usage of Status in CompactionJob 2014-11-10 11:57:58 -08:00
doc
examples remove unused target 2014-11-08 11:51:40 -08:00
hdfs
helpers/memenv
include Bump Version Number to 3.8 2014-11-10 12:10:56 -08:00
java
linters
port
table Fix -Wshadow for tools 2014-11-07 15:04:30 -08:00
third-party/rapidjson
tools Fix SIGSEGV in db_stresS 2014-11-08 13:01:31 -08:00
util Fix build 2014-11-09 13:01:50 -05:00
utilities
.arcconfig
.clang-format
.gitignore
.travis.yml
AUTHORS
CONTRIBUTING.md
HISTORY.md
INSTALL.md
LICENSE
Makefile CompactFiles, EventListener and GetDatabaseMetaData 2014-11-07 14:45:18 -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/