Find a file
Tamir Duberstein 103d0692ea Avoid unsupported attributes when not building with UBSAN
Summary:
yiwu-arbug see individual commits.
Closes https://github.com/facebook/rocksdb/pull/2318

Differential Revision: D5141520

Pulled By: yiwu-arbug

fbshipit-source-id: 7987c92ab4461eef36afce5a133d3a0ee0c96300
2017-05-30 11:13:01 -07:00
arcanist_util
buckifier
build_tools
cache
cmake/modules
coverage
db Avoid unsupported attributes when not building with UBSAN 2017-05-30 11:13:01 -07:00
docs RocksDB 5.4.5 release blog post 2017-05-26 23:11:56 -07:00
env
examples
hdfs
include/rocksdb support merge and delete in file ingestion 2017-05-26 12:11:21 -07:00
java support merge and delete in file ingestion 2017-05-26 12:11:21 -07:00
memtable
monitoring
options Reorder variables of ReadOptions 2017-05-26 11:41:20 -07:00
port
table support merge and delete in file ingestion 2017-05-26 12:11:21 -07:00
third-party
tools
util Avoid unsupported attributes when not building with UBSAN 2017-05-30 11:13:01 -07:00
utilities Avoid unsupported attributes when not building with UBSAN 2017-05-30 11:13:01 -07:00
.clang-format
.deprecated_arcconfig
.gitignore
.travis.yml travis: reduce the number of travis builders 2017-05-30 10:42:01 -07:00
appveyor.yml
AUTHORS
CMakeLists.txt Avoid unsupported attributes when not building with UBSAN 2017-05-30 11:13:01 -07:00
CONTRIBUTING.md
COPYING
DEFAULT_OPTIONS_HISTORY.md
DUMP_FORMAT.md
HISTORY.md
INSTALL.md
LANGUAGE-BINDINGS.md
LICENSE
Makefile Avoid unsupported attributes when not building with UBSAN 2017-05-30 11:13:01 -07:00
PATENTS
README.md
ROCKSDB_LITE.md
src.mk
TARGETS
thirdparty.inc
USERS.md
Vagrantfile
WINDOWS_PORT.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/