Find a file
jsteemann 62829ff751 reuse scratch buffer in transaction_log_reader (#5702)
Summary:
in order to avoid reallocations for a scratch std::string on every call to Next().
Pull Request resolved: https://github.com/facebook/rocksdb/pull/5702

Differential Revision: D16867803

fbshipit-source-id: 1391220a1b172b23336bbc71dc0c79ccf3b1c701
2019-08-26 11:26:29 -07:00
buckifier Change buckifier to support parameterized dependencies (#5648) 2019-08-02 10:55:17 -07:00
build_tools Port folly/synchronization/DistributedMutex to rocksdb (#5642) 2019-08-07 14:34:19 -07:00
cache
cmake cmake: s/SNAPPY_LIBRARIES/snappy_LIBRARIES/ (#5687) 2019-08-16 15:49:23 -07:00
coverage
db reuse scratch buffer in transaction_log_reader (#5702) 2019-08-26 11:26:29 -07:00
docs Blog post for write_unprepared (#5711) 2019-08-15 14:41:13 -07:00
env fix compile error: ‘FALLOC_FL_KEEP_SIZE’ undeclared (#5708) 2019-08-16 13:58:05 -07:00
examples Refactor trimming logic for immutable memtables (#5022) 2019-08-23 13:55:34 -07:00
file New API to get all merge operands for a Key (#5604) 2019-08-06 14:26:44 -07:00
hdfs
include/rocksdb Refactor trimming logic for immutable memtables (#5022) 2019-08-23 13:55:34 -07:00
java Refactor trimming logic for immutable memtables (#5022) 2019-08-23 13:55:34 -07:00
logging
memory
memtable
monitoring fix compiling with -DNPERF_CONTEXT (#5704) 2019-08-16 14:38:08 -07:00
options Refactor trimming logic for immutable memtables (#5022) 2019-08-23 13:55:34 -07:00
port
table Refactor trimming logic for immutable memtables (#5022) 2019-08-23 13:55:34 -07:00
test_util Refactor trimming logic for immutable memtables (#5022) 2019-08-23 13:55:34 -07:00
third-party Fix TSAN failures in DistributedMutex tests (#5684) 2019-08-14 17:01:31 -07:00
tools Refactor trimming logic for immutable memtables (#5022) 2019-08-23 13:55:34 -07:00
trace_replay Block cache analyzer: Support reading from human readable trace file. (#5679) 2019-08-09 13:13:54 -07:00
util Refactor trimming logic for immutable memtables (#5022) 2019-08-23 13:55:34 -07:00
utilities Refactor trimming logic for immutable memtables (#5022) 2019-08-23 13:55:34 -07:00
.clang-format
.gitignore
.lgtm.yml
.travis.yml
.watchmanconfig
appveyor.yml New API to get all merge operands for a Key (#5604) 2019-08-06 14:26:44 -07:00
AUTHORS
CMakeLists.txt Refactor trimming logic for immutable memtables (#5022) 2019-08-23 13:55:34 -07:00
CODE_OF_CONDUCT.md
CONTRIBUTING.md
COPYING
DEFAULT_OPTIONS_HISTORY.md
defs.bzl Change buckifier to support parameterized dependencies (#5648) 2019-08-02 10:55:17 -07:00
DUMP_FORMAT.md
HISTORY.md Refactor trimming logic for immutable memtables (#5022) 2019-08-23 13:55:34 -07:00
INSTALL.md
issue_template.md
LANGUAGE-BINDINGS.md
LICENSE.Apache
LICENSE.leveldb
Makefile Atomic Flush Crash Test also covers the case that WAL is enabled. (#5729) 2019-08-22 16:32:55 -07:00
README.md
ROCKSDB_LITE.md
src.mk Refactor trimming logic for immutable memtables (#5022) 2019-08-23 13:55:34 -07:00
TARGETS Refactor trimming logic for immutable memtables (#5022) 2019-08-23 13:55:34 -07:00
thirdparty.inc
USERS.md
Vagrantfile
WINDOWS_PORT.md

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

Linux/Mac Build Status Windows 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 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/

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.