• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

.circleci/H03-May-2022-881817

.github/workflows/H14-Dec-2021-4233

buckifier/H14-Dec-2021-765596

build_tools/H14-Dec-2021-12,9459,527

cache/H14-Dec-2021-5,2743,725

cmake/H14-Dec-2021-288227

coverage/H14-Dec-2021-205128

db/H14-Dec-2021-184,326142,878

db_stress_tool/H03-May-2022-8,0786,636

docs/H14-Dec-2021-6,6724,911

env/H14-Dec-2021-13,30910,569

examples/H03-May-2022-1,6431,185

file/H14-Dec-2021-6,5174,752

fuzz/H14-Dec-2021-728582

hdfs/H14-Dec-2021-421294

include/rocksdb/H14-Dec-2021-26,02412,329

java/H03-May-2022-96,59056,508

logging/H14-Dec-2021-2,2451,628

memory/H14-Dec-2021-1,424960

memtable/H14-Dec-2021-5,6574,019

monitoring/H14-Dec-2021-4,9283,698

options/H14-Dec-2021-13,22311,242

plugin/H14-Dec-2021-2614

port/H14-Dec-2021-6,1204,150

table/H14-Dec-2021-39,52929,388

test_util/H14-Dec-2021-2,7682,037

third-party/H14-Dec-2021-41,42626,599

tools/H03-May-2022-35,99629,530

trace_replay/H14-Dec-2021-3,0482,425

util/H14-Dec-2021-28,85519,385

utilities/H14-Dec-2021-75,55753,759

.clang-formatH A D14-Dec-2021138 65

.gitignoreH A D14-Dec-20211 KiB9887

.lgtm.ymlH A D14-Dec-202167 54

.travis.ymlH A D14-Dec-20218.1 KiB255247

.watchmanconfigH A D14-Dec-2021130 76

AUTHORSH A D14-Dec-2021322 1310

CODE_OF_CONDUCT.mdH A D14-Dec-20213.3 KiB7857

CONTRIBUTING.mdH A D14-Dec-2021706 1812

COPYINGH A D14-Dec-202117.7 KiB340281

DEFAULT_OPTIONS_HISTORY.mdH A D14-Dec-20211.5 KiB2520

DUMP_FORMAT.mdH A D14-Dec-2021763 1710

HISTORY.mdH A D14-Dec-2021169.6 KiB1,5281,288

INSTALL.mdH A D14-Dec-20217.8 KiB214152

LANGUAGE-BINDINGS.mdH A D14-Dec-20211.2 KiB2523

LICENSE.ApacheH A D14-Dec-202111.1 KiB203169

LICENSE.leveldbH A D14-Dec-20211.5 KiB3025

MakefileH A D14-Dec-202186.9 KiB2,3371,668

PLUGINS.mdH A D14-Dec-2021320 53

README.mdH A D14-Dec-20212 KiB3323

ROCKSDB_LITE.mdH A D14-Dec-20211 KiB2216

TARGETSH A D14-Dec-202157.1 KiB2,1752,146

USERS.mdH A D14-Dec-20217.6 KiB11880

VagrantfileH A D14-Dec-20211,017 4032

WINDOWS_PORT.mdH A D14-Dec-202112.5 KiB229145

appveyor.ymlH A D14-Dec-20213.3 KiB7868

defs.bzlH A D14-Dec-20211.9 KiB5749

issue_template.mdH A D14-Dec-2021294 84

src.mkH A D14-Dec-202141.6 KiB644625

thirdparty.incH A D14-Dec-20217.8 KiB269211

README.md

1## RocksDB: A Persistent Key-Value Store for Flash and RAM Storage
2
3[![CircleCI Status](https://circleci.com/gh/facebook/rocksdb.svg?style=svg)](https://circleci.com/gh/facebook/rocksdb)
4[![TravisCI Status](https://travis-ci.org/facebook/rocksdb.svg?branch=master)](https://travis-ci.org/facebook/rocksdb)
5[![Appveyor Build status](https://ci.appveyor.com/api/projects/status/fbgfu0so3afcno78/branch/master?svg=true)](https://ci.appveyor.com/project/Facebook/rocksdb/branch/master)
6[![PPC64le Build Status](http://140-211-168-68-openstack.osuosl.org:8080/buildStatus/icon?job=rocksdb&style=plastic)](http://140-211-168-68-openstack.osuosl.org:8080/job/rocksdb)
7
8RocksDB is developed and maintained by Facebook Database Engineering Team.
9It is built on earlier work on [LevelDB](https://github.com/google/leveldb) by Sanjay Ghemawat (sanjay@google.com)
10and Jeff Dean (jeff@google.com)
11
12This code is a library that forms the core building block for a fast
13key-value server, especially suited for storing data on flash drives.
14It has a Log-Structured-Merge-Database (LSM) design with flexible tradeoffs
15between Write-Amplification-Factor (WAF), Read-Amplification-Factor (RAF)
16and Space-Amplification-Factor (SAF). It has multi-threaded compactions,
17making it especially suitable for storing multiple terabytes of data in a
18single database.
19
20Start with example usage here: https://github.com/facebook/rocksdb/tree/master/examples
21
22See the [github wiki](https://github.com/facebook/rocksdb/wiki) for more explanation.
23
24The public interface is in `include/`.  Callers should not include or
25rely on the details of any other header files in this package.  Those
26internal APIs may be changed without warning.
27
28Design discussions are conducted in https://www.facebook.com/groups/rocksdb.dev/ and https://rocksdb.slack.com/
29
30## License
31
32RocksDB 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.
33