Find a file
Jay Lee a7875272d7 c: support seek_for_prev
Summary:
support seek_for_prev in c abi.
Closes https://github.com/facebook/rocksdb/pull/1457

Differential Revision: D4135360

Pulled By: lightmark

fbshipit-source-id: 61256b0
2016-11-08 12:54:13 -08:00
arcanist_util Make rocksdb work with internal repo 2016-10-28 14:59:50 -07:00
build_tools Update documentation to point at gcc 4.8 2016-10-29 12:09:17 -07:00
cmake/modules
coverage
db c: support seek_for_prev 2016-11-08 12:54:13 -08:00
docs Make the header links a bit more flexible 2016-11-07 17:03:44 -08:00
examples
hdfs
include/rocksdb c: support seek_for_prev 2016-11-08 12:54:13 -08:00
java Java API - Implement GetFromBatch and GetFromBatchAndDB in WBWI 2016-11-06 02:44:07 -08:00
memtable
port Fix integer overflow in GetL0ThresholdSpeedupCompaction (#1378) 2016-10-23 18:43:29 -07:00
table Insert range deletion meta-block into block cache 2016-11-05 09:24:26 -07:00
third-party
tools DeleteRange user iterator support 2016-11-04 12:09:22 -07:00
util DeleteRange Get support 2016-11-03 18:54:20 -07:00
utilities DeleteRange user iterator support 2016-11-04 12:09:22 -07:00
.arcconfig Make rocksdb work with internal repo 2016-10-28 14:59:50 -07:00
.clang-format
.gitignore Make rocksdb work with internal repo 2016-10-28 14:59:50 -07:00
.travis.yml
appveyor.yml
AUTHORS
CMakeLists.txt Introduce FAIL_ON_WARNINGS CMake variable (default ON) 2016-11-01 01:24:16 -07:00
CONTRIBUTING.md
DEFAULT_OPTIONS_HISTORY.md
DUMP_FORMAT.md
HISTORY.md Add avoid_flush_during_shutdown DB option 2016-11-02 15:39:18 -07:00
INSTALL.md Update documentation to point at gcc 4.8 2016-10-29 12:09:17 -07:00
LANGUAGE-BINDINGS.md
LICENSE
Makefile fix freebsd build include path err and so & jar file name 2016-10-31 09:39:16 -07:00
PATENTS
README.md
ROCKSDB_LITE.md
src.mk
thirdparty.inc
USERS.md
Vagrantfile Update Vagrant file (test internal phabricator workflow) 2016-10-28 15:39:19 -07:00
WINDOWS_PORT.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/