Find a file
Jun Wu e502839e25 crc32: suppress -Wimplicit-fallthrough warnings
Summary:
Workaround a bunch of "implicit-fallthrough" compiler errors, like:

```
util/crc32c.cc:533:7: error: this statement may fall through [-Werror=implicit-fallthrough=]
   crc = _mm_crc32_u64(crc, *(uint64_t*)(buf + offset));
       ^
util/crc32c.cc:1016:9: note: in expansion of macro ‘CRCsinglet’
         CRCsinglet(crc0, next, -2 * 8);
         ^~~~~~~~~~
util/crc32c.cc:1017:7: note: here
       case 1:
```
Closes https://github.com/facebook/rocksdb/pull/3339

Reviewed By: sagar0

Differential Revision: D6874736

Pulled By: quark-zju

fbshipit-source-id: eec9f3bc135e12fca336928d01711006d5c3cb16
2018-02-01 14:27:42 -08:00
buckifier Suppress lint in old files 2018-01-29 12:56:42 -08:00
build_tools Suppress lint in old files 2018-01-29 12:56:42 -08:00
cache
cmake
coverage Suppress lint in old files 2018-01-29 12:56:42 -08:00
db Upgrade Appveyor to VS2017 2018-02-01 13:57:01 -08:00
docs fix Gemfile.lock nokogiri dependencies 2018-01-11 20:11:32 -08:00
env Add a Close() method to DB to return status when closing a db 2018-01-16 11:08:57 -08:00
examples
hdfs Suppress lint in old files 2018-01-29 12:56:42 -08:00
include/rocksdb WritePrepared Txn: Duplicate Keys, Memtable part 2018-01-31 18:57:07 -08:00
java Suppress lint in old files 2018-01-29 12:56:42 -08:00
memtable WritePrepared Txn: Duplicate Keys, Memtable part 2018-01-31 18:57:07 -08:00
monitoring
options DB::DumpSupportInfo should log all supported compression types 2018-01-23 14:44:12 -08:00
port FreeBSD build support for RocksDB and RocksJava 2018-01-11 13:29:55 -08:00
table Update rocksdb.read.block.get.micros when block cache disabled 2018-01-31 14:26:52 -08:00
third-party
tools db_bench: sanity check CuckooTable with mmap_read option 2018-01-29 14:27:32 -08:00
util crc32: suppress -Wimplicit-fallthrough warnings 2018-02-01 14:27:42 -08:00
utilities Blob DB: miscellaneous changes 2018-01-31 18:13:23 -08:00
.clang-format
.gitignore
.travis.yml
appveyor.yml Upgrade Appveyor to VS2017 2018-02-01 13:57:01 -08:00
AUTHORS
CMakeLists.txt CMake changes for CRC32 Optimization on PowerPC 2018-01-23 16:57:11 -08:00
CODE_OF_CONDUCT.md
CONTRIBUTING.md
COPYING
DEFAULT_OPTIONS_HISTORY.md
DUMP_FORMAT.md
HISTORY.md Delete files in multiple ranges at once 2018-01-30 13:56:39 -08:00
INSTALL.md FreeBSD build support for RocksDB and RocksJava 2018-01-11 13:29:55 -08:00
issue_template.md
LANGUAGE-BINDINGS.md Add Nim to the list of language bindings 2018-01-29 09:57:46 -08:00
LICENSE.Apache
LICENSE.leveldb
Makefile add -fno-sanitize-recover option to force exit on errors 2018-01-31 12:13:00 -08:00
README.md Add Jenkins for PPC64le build status badge 2018-01-11 14:57:45 -08:00
ROCKSDB_LITE.md
src.mk
TARGETS
thirdparty.inc
USERS.md
Vagrantfile
WINDOWS_PORT.md

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

Linux/Mac Build Status Windows Build status PPC64le 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/