Find a file
agiardullo 25dbc579f5 Update HISTORY file for transactions
Summary: Move line about pessimistic transactions to the correct place in the history file and no longer refer to it as 'experimental'

Test Plan: n/a

Reviewers: igor, sdong, IslamAbdelRahman

Reviewed By: IslamAbdelRahman

Subscribers: dhruba, leveldb

Differential Revision: https://reviews.facebook.net/D46449
2015-09-09 13:27:19 -07:00
arcanist_util
build_tools Minor fix to sandcastle jobs commands 2015-09-09 10:54:50 -07:00
coverage
db better tuning of arena block size 2015-09-08 20:53:32 -07:00
doc
examples Fix compact_files_example 2015-08-25 12:29:44 -07:00
hdfs
include/rocksdb better tuning of arena block size 2015-09-08 20:53:32 -07:00
java Fixed a compile warning in rocksjni/loggerjnicallback.cc 2015-09-02 15:07:44 -07:00
port Make WinEnv::NowMicros return system time 2015-09-02 11:12:07 -07:00
table Added Equal method to Comparator interface 2015-09-08 15:30:49 -07:00
third-party
tools Tests for ManifestDumpCommand and ListColumnFamiliesCommand 2015-09-08 14:23:42 -07:00
util Fixed broken build due to format specifier 2015-09-08 15:46:16 -07:00
utilities TransactionDB Custom Locking API 2015-09-08 17:03:57 -07:00
.arcconfig
.clang-format
.gitignore
.travis.yml
appveyor.yml
AUTHORS
CMakeLists.txt TransactionDB Custom Locking API 2015-09-08 17:03:57 -07:00
CONTRIBUTING.md
DUMP_FORMAT.md
HISTORY.md Update HISTORY file for transactions 2015-09-09 13:27:19 -07:00
INSTALL.md Fixed a typo in INSTALL.md 2015-09-03 19:46:09 -07:00
LICENSE
Makefile Fixed the build issue of rocksdbjavastaticrelease 2015-09-01 11:07:43 -07:00
PATENTS
README.md
ROCKSDB_LITE.md
src.mk TransactionDB Custom Locking API 2015-09-08 17:03:57 -07:00
thirdparty.inc
USERS.md Add Cloudera's blog post to USERS.md 2015-09-02 14:04:51 -07:00
Vagrantfile
WINDOWS_PORT.md

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

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/