Find a file
sdong 294bdf9ee2 Change Property name from "rocksdb.current_version_number" to "rocksdb.current-super-version-number"
Summary: I realized I again is wrong about the naming convention. Let me change it to the correct one.

Test Plan: Run unit tests.

Reviewers: IslamAbdelRahman, kradhakrishnan, yhchiang, andrewkr

Reviewed By: andrewkr

Subscribers: leveldb, dhruba

Differential Revision: https://reviews.facebook.net/D55041
2016-03-04 18:15:29 -08:00
arcanist_util
build_tools
coverage
db Change Property name from "rocksdb.current_version_number" to "rocksdb.current-super-version-number" 2016-03-04 18:15:29 -08:00
doc
examples
hdfs
include/rocksdb Change Property name from "rocksdb.current_version_number" to "rocksdb.current-super-version-number" 2016-03-04 18:15:29 -08:00
java
memtable
port
table Add Iterator Property rocksdb.iterator.version_number 2016-03-02 16:23:59 -08:00
third-party
tools Update benchmarks used to measure subcompaction performance 2016-03-04 12:32:11 -08:00
util Use pure if-then check instead of assert in EraseColumnFamilyInfo 2016-03-04 16:03:31 -08:00
utilities Fix Windows build 2016-03-03 15:08:24 -08:00
.arcconfig
.clang-format
.gitignore
.travis.yml
appveyor.yml
AUTHORS
CMakeLists.txt Add Iterator Property rocksdb.iterator.version_number 2016-03-02 16:23:59 -08:00
CONTRIBUTING.md
DUMP_FORMAT.md
HISTORY.md Change BlockBasedTableOptions.format_version default to 2 2016-03-01 14:28:52 -08:00
INSTALL.md
LICENSE
Makefile Add Iterator Property rocksdb.iterator.version_number 2016-03-02 16:23:59 -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/