Find a file
Andrew Kryczka 29289333d0 Add named constants for remaining properties
Summary:
There were just these two properties that didn't have any named
constant.

Test Plan:
build and below test

  $ ./db_properties_test --gtest_filter=DBPropertiesTest.NumImmutableMemTable

Reviewers: yhchiang, sdong

Reviewed By: sdong

Subscribers: dhruba, leveldb

Differential Revision: https://reviews.facebook.net/D53103
2016-01-21 10:59:36 -08:00
arcanist_util Added sandcastle pre-commit 2016-01-21 08:53:55 -08:00
build_tools Simple changes to support builds for ppc64[le] consistent with X86 2016-01-19 09:08:19 -06:00
coverage
db Add named constants for remaining properties 2016-01-21 10:59:36 -08:00
doc
examples Fix examples 2015-12-16 17:04:46 +01:00
hdfs update posix env schedule call 2015-12-30 10:12:44 -08:00
include/rocksdb Add named constants for remaining properties 2016-01-21 10:59:36 -08:00
java Changes for build on solaris 2016-01-19 04:45:21 +00:00
memtable Enable MS compiler warning c4244. 2015-12-11 16:47:34 -08:00
port Align statistics 2016-01-13 14:53:23 -08:00
table Reduce iterator deletion overhead 2016-01-11 16:48:15 -08:00
third-party Enable MS compiler warning c4244. 2015-12-11 16:47:34 -08:00
tools Crash test to make kill decision for every kill point 2016-01-19 18:11:24 -08:00
util Disable OptionsParserTest.BlockBasedTableOptionsAllFieldsSettable under CLANG 2016-01-21 10:56:34 -08:00
utilities As per google coding standard replace "using" in option_builder.cc and 2016-01-20 00:27:29 +00:00
.arcconfig
.clang-format
.gitignore
.travis.yml Revert "Change notification email for travis" 2016-01-19 22:46:39 +00:00
appveyor.yml Exclude DBTest.FileCreationRandomFailure as a long running test 2015-11-17 13:54:13 -08:00
AUTHORS
CMakeLists.txt Split db_test.cc (part 1: properties) 2016-01-20 15:17:52 -08:00
CONTRIBUTING.md
DUMP_FORMAT.md
HISTORY.md Update HISTORY.mc for 4.4.0 2016-01-14 16:57:06 -08:00
INSTALL.md Simple changes to support builds for ppc64[le] consistent with X86 2016-01-19 09:08:19 -06:00
LICENSE
Makefile Split db_test.cc (part 1: properties) 2016-01-20 15:17:52 -08:00
PATENTS
README.md
ROCKSDB_LITE.md
src.mk support for concurrent adds to memtable 2015-12-25 11:03:40 -08:00
thirdparty.inc Enable override to 3rd party linkage 2015-11-24 11:51:37 -08:00
USERS.md Add Rakuten Marketing to USERS.md 2016-01-18 15:24:52 -08:00
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/