Find a file
Jim Meyering b9a0213cda build: fix unportable Makefile syntax
Summary:
* Makefile (dummy): Prefix this statement with "dummy := ",
so that it no longer triggers a syntax error from GNU make 3.80
and earlier.  Reported by nielsl in
https://github.com/facebook/rocksdb/issues/509

Test Plan: run make

Reviewers: sdong, ljin, igor

Reviewed By: igor

Subscribers: dhruba

Differential Revision: https://reviews.facebook.net/D33429
2015-02-13 16:26:35 -08:00
build_tools
coverage
db Introduce job_id for flush and compaction 2015-02-12 09:54:48 -08:00
doc
examples
hdfs
include Remember whole key/prefix filtering on/off in SST file 2015-02-11 11:20:04 -08:00
java [RocksJava] FlushOptions Correction 2015-02-12 17:31:38 +01:00
linters
port
table Remember whole key/prefix filtering on/off in SST file 2015-02-11 11:20:04 -08:00
third-party/rapidjson
tools Added simple monitoring script to monitor overusage of memory in db_bench 2015-02-11 18:40:11 -08:00
util rocksdb: Fix scan-build 'Called C++ object pointer is null' and 'Dereference of null pointer' bugs 2015-02-13 15:10:47 -08:00
utilities
.arcconfig
.clang-format
.gitignore
.travis.yml
AUTHORS
CONTRIBUTING.md
HISTORY.md Remember whole key/prefix filtering on/off in SST file 2015-02-11 11:20:04 -08:00
INSTALL.md
LICENSE
Makefile build: fix unportable Makefile syntax 2015-02-13 16:26:35 -08:00
PATENTS
README.md
ROCKSDB_LITE.md
Vagrantfile

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/