Go to file
sdong 736a7b5433 Remove own ToString() (#9955)
Summary:
ToString() is created as some platform doesn't support std::to_string(). However, we've already used std::to_string() by mistake for 16 months (in db/db_info_dumper.cc). This commit just remove ToString().

Pull Request resolved: https://github.com/facebook/rocksdb/pull/9955

Test Plan: Watch CI tests

Reviewed By: riversand963

Differential Revision: D36176799

fbshipit-source-id: bdb6dcd0e3a3ab96a1ac810f5d0188f684064471
2022-05-06 13:03:58 -07:00
.circleci
.github/workflows
buckifier
build_tools
cache Remove own ToString() (#9955) 2022-05-06 13:03:58 -07:00
cmake
coverage
db Remove own ToString() (#9955) 2022-05-06 13:03:58 -07:00
db_stress_tool Remove own ToString() (#9955) 2022-05-06 13:03:58 -07:00
docs
env Remove own ToString() (#9955) 2022-05-06 13:03:58 -07:00
examples
file Remove own ToString() (#9955) 2022-05-06 13:03:58 -07:00
fuzz
include/rocksdb
java Remove own ToString() (#9955) 2022-05-06 13:03:58 -07:00
logging
memory Remove own ToString() (#9955) 2022-05-06 13:03:58 -07:00
memtable Remove own ToString() (#9955) 2022-05-06 13:03:58 -07:00
microbench Remove own ToString() (#9955) 2022-05-06 13:03:58 -07:00
monitoring
options Remove own ToString() (#9955) 2022-05-06 13:03:58 -07:00
plugin
port
table Remove own ToString() (#9955) 2022-05-06 13:03:58 -07:00
test_util Remove own ToString() (#9955) 2022-05-06 13:03:58 -07:00
third-party
tools Remove own ToString() (#9955) 2022-05-06 13:03:58 -07:00
trace_replay
util Remove own ToString() (#9955) 2022-05-06 13:03:58 -07:00
utilities Remove own ToString() (#9955) 2022-05-06 13:03:58 -07:00
.clang-format
.gitignore
.lgtm.yml
.travis.yml
.watchmanconfig
AUTHORS
CMakeLists.txt
CODE_OF_CONDUCT.md
CONTRIBUTING.md
COPYING
DEFAULT_OPTIONS_HISTORY.md
DUMP_FORMAT.md
HISTORY.md
INSTALL.md
LANGUAGE-BINDINGS.md
LICENSE.Apache
LICENSE.leveldb
Makefile
PLUGINS.md
README.md
ROCKSDB_LITE.md
TARGETS
USERS.md
Vagrantfile
WINDOWS_PORT.md
crash_test.mk
issue_template.md
python.mk
rocksdb.pc.in
src.mk
thirdparty.inc

README.md

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

CircleCI Status TravisCI Status Appveyor 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 especially suitable for storing multiple terabytes of data in a single database.

Start with example usage here: https://github.com/facebook/rocksdb/tree/main/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.

Questions and discussions are welcome on the RocksDB Developers Public Facebook group and email list on Google Groups.

License

RocksDB is dual-licensed under both the GPLv2 (found in the COPYING file in the root directory) and Apache 2.0 License (found in the LICENSE.Apache file in the root directory). You may select, at your option, one of the above-listed licenses.