Find a file
Venkatesh Radhakrishnan 6b2a3ac92c Add documentation for unschedFunction
Summary:
Documenting the unschedFunction parameter to Schedule as
requested by Michael Kolupaev.

Test Plan: build, unit test

Reviewers: sdong, IslamAbdelRahman

Reviewed By: IslamAbdelRahman

Subscribers: kolmike, dhruba

Differential Revision: https://reviews.facebook.net/D52089
2015-12-17 10:41:39 -08:00
arcanist_util Don't spew warnings when flint doesn't exist 2015-10-19 18:47:59 -07:00
build_tools Improving parser 2015-12-11 11:06:42 -08:00
coverage
db Introduce ReadOptions::pin_data (support zero copy for keys) 2015-12-16 12:08:30 -08:00
doc Lint everything 2015-11-16 12:56:21 -08:00
examples Fix examples 2015-12-16 17:04:46 +01:00
hdfs Running manual compactions in parallel with other automatic or manual compactions in restricted cases 2015-12-14 11:20:34 -08:00
include/rocksdb Add documentation for unschedFunction 2015-12-17 10:41:39 -08:00
java fix typos in comments 2015-12-11 01:54:48 +09:00
memtable Enable C4305 'identifier' : truncation from 'type1' to 'type2' 2015-11-06 16:44:39 -08:00
port Running manual compactions in parallel with other automatic or manual compactions in restricted cases 2015-12-14 11:20:34 -08:00
table Introduce ReadOptions::pin_data (support zero copy for keys) 2015-12-16 12:08:30 -08:00
third-party Lint everything 2015-11-16 12:56:21 -08:00
tools fix typos in comments 2015-12-11 01:54:48 +09:00
util ZSTD to use CompressionOptions.level 2015-12-16 16:58:04 -08:00
utilities Use port size_t formatting 2015-12-15 11:34:22 -08:00
.arcconfig
.clang-format
.gitignore
.travis.yml Run ROCKSDB_LITE tests in travis 2015-10-16 10:47:37 -07:00
appveyor.yml Exclude DBTest.FileCreationRandomFailure as a long running test 2015-11-17 13:54:13 -08:00
AUTHORS
CMakeLists.txt Merge pull request #862 from ceph/wip-env 2015-12-10 18:45:07 -08:00
CONTRIBUTING.md
DUMP_FORMAT.md
HISTORY.md fix typos in comments 2015-12-11 01:54:48 +09:00
INSTALL.md
LICENSE
Makefile Clean up listener_test (reuse db_test_util) 2015-12-14 13:36:32 -08:00
PATENTS
README.md
ROCKSDB_LITE.md
src.mk Merge pull request #862 from ceph/wip-env 2015-12-10 18:45:07 -08:00
thirdparty.inc Enable override to 3rd party linkage 2015-11-24 11:51:37 -08:00
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/