Go to file
Flarnie Marchan 1b0c58d7e7 Add Code of Conduct
Summary:
In the past Facebook didn't promote including a Code of Conduct when creating new projects, and many projects skipped this important document. Let's fix it. :)

**why make this change?:**
Facebook Open Source provides a Code of Conduct statement for all
projects to follow, to promote a welcoming and safe open source community.

Exposing the COC via a separate markdown file is a standard being
promoted by Github via the Community Profile in order to meet their Open
Source Guide's recommended community standards.

As you can see, adding this file will improve [the rocksdb community profile](https://github.com/facebook/rocksdb/community)
checklist and increase the visibility of our COC.

**test plan:**
Viewing it on my branch -
<img width="1008" alt="screen shot 2017-12-03 at 5 05 45 pm" src="https://user-images.githubusercontent.com/1114467/33532198-66012a56-d84c-11e7-8fab-29ed410bd600.png">
<img width="1015" alt="screen shot 2017-12-03 at 5 05 59 pm" src="https://user-images.githubusercontent.com/1114467/33532199-661813d8-d84c-11e7-941e-94754dd481e5.png">

**issue:**
internal task t23481323
Closes https://github.com/facebook/rocksdb/pull/3219

Reviewed By: yiwu-arbug

Differential Revision: D6494234

Pulled By: flarnie

fbshipit-source-id: 55b59db335cc5546f3a1c968322b9281a3dc3aaf
2017-12-05 18:42:35 -08:00
buckifier Remove `import` use from TARGETS 2017-11-30 15:27:34 -08:00
build_tools Add ROCKSDB_DISABLE_* environment variables 2017-12-05 15:12:46 -08:00
cache fix gflags namespace 2017-12-01 10:42:05 -08:00
cmake add missing config checks to CMakeLists.txt 2017-11-30 22:57:00 -08:00
coverage
db fix gflags namespace 2017-12-01 10:42:05 -08:00
docs
env Suppress valgrind "unimplemented functionality" error 2017-11-15 14:28:34 -08:00
examples
hdfs
include/rocksdb C API: Add some block based table options 2017-11-28 14:12:44 -08:00
java CMake cross platform Java support and add JNI to travis 2017-11-28 12:27:53 -08:00
memtable fix gflags namespace 2017-12-01 10:42:05 -08:00
monitoring Add a ticker stat for number of keys skipped during iteration 2017-11-20 21:26:37 -08:00
options Update DBOptions::IncreaseParallelism to use newer background settings 2017-12-04 01:56:15 -08:00
port Make writable_file_max_buffer_size dynamic 2017-10-31 13:56:35 -07:00
table fix gflags namespace 2017-12-01 10:42:05 -08:00
third-party Enable MSVC W4 with a few exceptions. Fix warnings and bugs 2017-10-19 10:57:12 -07:00
tools fix gflags namespace 2017-12-01 10:42:05 -08:00
util fix gflags namespace 2017-12-01 10:42:05 -08:00
utilities fix gflags namespace 2017-12-01 10:42:05 -08:00
.clang-format
.gitignore
.travis.yml CMake cross platform Java support and add JNI to travis 2017-11-28 12:27:53 -08:00
AUTHORS
CMakeLists.txt gflags in cmake on linux 2017-12-01 18:28:24 -08:00
CODE_OF_CONDUCT.md Add Code of Conduct 2017-12-05 18:42:35 -08:00
CONTRIBUTING.md Add Code of Conduct 2017-12-05 18:42:35 -08:00
COPYING
DEFAULT_OPTIONS_HISTORY.md
DUMP_FORMAT.md
HISTORY.md Fix IOError on WAL write doesn't propagate to write group follower 2017-11-28 11:42:48 -08:00
INSTALL.md
LANGUAGE-BINDINGS.md Add Elixir to the list of language bindings 2017-11-21 10:13:14 -08:00
LICENSE.Apache
LICENSE.leveldb
Makefile Suppress valgrind "unimplemented functionality" error 2017-11-15 14:28:34 -08:00
README.md
ROCKSDB_LITE.md
TARGETS Remove `import` use from TARGETS 2017-11-30 15:27:34 -08:00
USERS.md Added ProfaneDB 2017-11-19 10:11:44 -08:00
Vagrantfile
WINDOWS_PORT.md
appveyor.yml
issue_template.md
src.mk Fix TARGETS lint warnings. 2017-11-15 14:28:34 -08:00
thirdparty.inc Enable cacheline_aligned_alloc() to allocate from jemalloc if enabled. 2017-10-27 13:27:12 -07:00

README.md

RocksDB: A Persistent Key-Value Store for Flash and RAM Storage

Build Status 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/