Find a file
Jay Zhuang fcccc412d7 Remove Travis CI (#10407)
Summary:
Travis CI is depreciated and haven't been maintained for some time.

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

Reviewed By: ajkr

Differential Revision: D38078382

Pulled By: jay-zhuang

fbshipit-source-id: f42057f2f41f722bdce56bf195f67a94835191fb
2022-07-22 20:16:45 -07:00
.circleci
.github/workflows
buckifier
build_tools Remove Travis CI (#10407) 2022-07-22 20:16:45 -07:00
cache Charge blob cache usage against the global memory limit (#10321) 2022-07-18 23:26:57 -07:00
cmake
coverage
db Remove Travis CI (#10407) 2022-07-22 20:16:45 -07:00
db_stress_tool Stop operating on DB in a stress test background thread (#10373) 2022-07-19 11:25:43 -07:00
docs Bump tzinfo from 1.2.9 to 1.2.10 in /docs (#10400) 2022-07-22 08:45:36 -07:00
env Remove Travis CI (#10407) 2022-07-22 20:16:45 -07:00
examples
file
fuzz
include/rocksdb Charge blob cache usage against the global memory limit (#10321) 2022-07-18 23:26:57 -07:00
java
logging
memory
memtable
microbench
monitoring
options Fix race conditions in GenericRateLimiter (#10374) 2022-07-19 09:31:14 -07:00
plugin
port
table Charge blob cache usage against the global memory limit (#10321) 2022-07-18 23:26:57 -07:00
test_util
third-party
tools Print perf context for all benchmarks if enabled (#10396) 2022-07-22 09:19:25 -07:00
trace_replay
util Remove Travis CI (#10407) 2022-07-22 20:16:45 -07:00
utilities Remove Travis CI (#10407) 2022-07-22 20:16:45 -07:00
.clang-format
.gitignore
.lgtm.yml
.watchmanconfig
AUTHORS
CMakeLists.txt Charge blob cache usage against the global memory limit (#10321) 2022-07-18 23:26:57 -07:00
CODE_OF_CONDUCT.md
common.mk
CONTRIBUTING.md
COPYING
crash_test.mk
DEFAULT_OPTIONS_HISTORY.md
DUMP_FORMAT.md
HISTORY.md Fix underflow in FIFOCompactionPicker (#10386) 2022-07-22 09:20:35 -07:00
INSTALL.md
issue_template.md
LANGUAGE-BINDINGS.md
LICENSE.Apache
LICENSE.leveldb
Makefile
PLUGINS.md
README.md Remove Travis CI (#10407) 2022-07-22 20:16:45 -07:00
rocksdb.pc.in
ROCKSDB_LITE.md
src.mk Charge blob cache usage against the global memory limit (#10321) 2022-07-18 23:26:57 -07:00
TARGETS Charge blob cache usage against the global memory limit (#10321) 2022-07-18 23:26:57 -07:00
thirdparty.inc
USERS.md
Vagrantfile
WINDOWS_PORT.md

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

CircleCI 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/main/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.

Questions and discussions are welcome on the RocksDB Developers Public Facebook group and email list on Google Groups.

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.