Find a file
Peter Dillinger 8e6ff044e1 Fix release build and fbcode+clang+shared (#7062)
Summary:
Follow-up to https://github.com/facebook/rocksdb/issues/6660. Release build had linker error. fbcode+clang+shared build was erroring on unused parameter '-nostdinc'.

Fixes https://github.com/facebook/rocksdb/issues/7061

Pull Request resolved: https://github.com/facebook/rocksdb/pull/7062

Test Plan: make release, USE_CLANG=1 LIB_MODE=shared make check, etc.

Reviewed By: siying

Differential Revision: D22335663

Pulled By: pdillinger

fbshipit-source-id: 261cd959ca1f6c273dc763a70020a535ba8e81de
2020-07-01 10:30:55 -07:00
.circleci Remove 2019 from appveyor (#7038) 2020-06-29 14:31:41 -07:00
.github/workflows
buckifier Use Libraries in the RocksDB Makefile Build (#6660) 2020-06-30 19:33:31 -07:00
build_tools Use Libraries in the RocksDB Makefile Build (#6660) 2020-06-30 19:33:31 -07:00
cache
cmake
coverage
db Use Libraries in the RocksDB Makefile Build (#6660) 2020-06-30 19:33:31 -07:00
db_stress_tool Use Libraries in the RocksDB Makefile Build (#6660) 2020-06-30 19:33:31 -07:00
docs
env
examples
file Extend Get/MultiGet deadline support to table open (#6982) 2020-06-29 14:53:17 -07:00
hdfs
include/rocksdb Generalize BackupEngine naming option for share_files_with_checksum SSTs and revert BackupEngine::VerifyBackup to check only file sizes by default (#7032) 2020-06-30 18:47:16 -07:00
java
logging
memory
memtable
monitoring
options
port
table Skip unnecessary allocation for mmap reads under 5000 bytes (#7043) 2020-06-30 15:40:40 -07:00
test_util
third-party
tools Fix python in format check script for Centos8 (#7057) 2020-06-30 16:37:21 -07:00
trace_replay
util
utilities Generalize BackupEngine naming option for share_files_with_checksum SSTs and revert BackupEngine::VerifyBackup to check only file sizes by default (#7032) 2020-06-30 18:47:16 -07:00
.clang-format
.gitignore
.lgtm.yml
.travis.yml
.watchmanconfig
appveyor.yml Remove 2019 from appveyor (#7038) 2020-06-29 14:31:41 -07:00
AUTHORS
CMakeLists.txt freebsd: malloc_usable_size check malloc_np.h (#7009) 2020-06-25 17:30:27 -07:00
CODE_OF_CONDUCT.md
CONTRIBUTING.md
COPYING
DEFAULT_OPTIONS_HISTORY.md
defs.bzl
DUMP_FORMAT.md
HISTORY.md Generalize BackupEngine naming option for share_files_with_checksum SSTs and revert BackupEngine::VerifyBackup to check only file sizes by default (#7032) 2020-06-30 18:47:16 -07:00
INSTALL.md
issue_template.md
LANGUAGE-BINDINGS.md
LICENSE.Apache
LICENSE.leveldb
Makefile Fix release build and fbcode+clang+shared (#7062) 2020-07-01 10:30:55 -07:00
README.md
ROCKSDB_LITE.md
src.mk Use Libraries in the RocksDB Makefile Build (#6660) 2020-06-30 19:33:31 -07:00
TARGETS
thirdparty.inc
USERS.md
Vagrantfile
WINDOWS_PORT.md

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

CircleCI Status TravisCI Status Appveyor Build status PPC64le 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 especially 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/ and https://rocksdb.slack.com/

License

RocksDB is dual-licensed under both the GPLv2 (found in the COPYING file in the root directory) and Apache 2.0 License (found in the LICENSE.Apache file in the root directory). You may select, at your option, one of the above-listed licenses.