Go to file
Maysam Yabandeh 30b58cf71a Remove the orphan assert on !need_log_sync
Summary:
We initially had disabled support for write_options.sync when concurrent_prepare_ is set. We later added this support but the statement that asserts this combination is not used was left there. This patch cleans it up.
Closes https://github.com/facebook/rocksdb/pull/2642

Differential Revision: D5496101

Pulled By: maysamyabandeh

fbshipit-source-id: becbc503446f2a51bee24cc861958c090c724ec2
2017-07-25 18:41:52 -07:00
arcanist_util Remove arcanist_util directory 2017-07-19 16:49:55 -07:00
buckifier enable UBSAN macro in TARGETS 2017-07-24 10:54:37 -07:00
build_tools Remove make_new_version.sh 2017-07-20 20:45:20 -07:00
cache LRUCacheShard cache line size alignment 2017-07-24 10:54:37 -07:00
cmake/modules
coverage
db Remove the orphan assert on !need_log_sync 2017-07-25 18:41:52 -07:00
docs 5.6.1 release blog post 2017-07-25 12:27:22 -07:00
env Revert "comment out unused parameters" 2017-07-21 18:26:26 -07:00
examples Change RocksDB License 2017-07-15 16:11:23 -07:00
hdfs Revert "comment out unused parameters" 2017-07-21 18:26:26 -07:00
include/rocksdb Added db paths to c 2017-07-24 11:58:02 -07:00
java Gcc 7 ParsedInternalKey replace memset with clear function. 2017-07-24 11:31:15 -07:00
memtable Revert "comment out unused parameters" 2017-07-21 18:26:26 -07:00
monitoring Change RocksDB License 2017-07-15 16:11:23 -07:00
options Revert "comment out unused parameters" 2017-07-21 18:26:26 -07:00
port LRUCacheShard cache line size alignment 2017-07-24 10:54:37 -07:00
table Revert "comment out unused parameters" 2017-07-21 18:26:26 -07:00
third-party Revert "comment out unused parameters" 2017-07-21 18:26:26 -07:00
tools Revert "comment out unused parameters" 2017-07-21 18:26:26 -07:00
util Revert "comment out unused parameters" 2017-07-21 18:26:26 -07:00
utilities Lower num of iterations in DeadlockCycle test 2017-07-25 11:42:26 -07:00
.clang-format
.gitignore
.travis.yml
AUTHORS
CMakeLists.txt Cassandra compaction filter for purge expired columns and rows 2017-07-21 14:57:44 -07:00
CONTRIBUTING.md Remove the licensing description in CONTRIBUTING.md 2017-07-16 15:57:18 -07:00
COPYING
DEFAULT_OPTIONS_HISTORY.md
DUMP_FORMAT.md
HISTORY.md Release note for partitioned index/filters 2017-07-25 10:24:12 -07:00
INSTALL.md add vcpkg as an windows option 2017-07-24 15:12:45 -07:00
LANGUAGE-BINDINGS.md
LICENSE.Apache Change RocksDB License 2017-07-15 16:11:23 -07:00
LICENSE.leveldb Add back the LevelDB license file 2017-07-16 18:42:18 -07:00
Makefile Cassandra compaction filter for purge expired columns and rows 2017-07-21 14:57:44 -07:00
README.md
ROCKSDB_LITE.md
TARGETS buckification: remove explicit `-msse*` compiler flags 2017-07-25 12:09:06 -07:00
USERS.md
Vagrantfile
WINDOWS_PORT.md
appveyor.yml
src.mk Cassandra compaction filter for purge expired columns and rows 2017-07-21 14:57:44 -07:00
thirdparty.inc

README.md

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

Build Status 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/