mirror of https://github.com/facebook/rocksdb.git
08a63ad10b
Summary: **Context/Summary:** Run the following to format ``` find ./examples -iname *.h -o -iname *.cc | xargs clang-format -i find ./memory -iname *.h -o -iname *.cc | xargs clang-format -i find ./memtable -iname *.h -o -iname *.cc | xargs clang-format -i ``` **Test** - Manual inspection to ensure changes are cosmetic only - CI Pull Request resolved: https://github.com/facebook/rocksdb/pull/10893 Reviewed By: jay-zhuang Differential Revision: D40779187 Pulled By: hx235 fbshipit-source-id: 529cbb0f0fbd698d95817e8c42fe3ce32254d9b0 |
||
---|---|---|
.. | ||
.gitignore | ||
CMakeLists.txt | ||
Makefile | ||
README.md | ||
c_simple_example.c | ||
column_families_example.cc | ||
compact_files_example.cc | ||
compaction_filter_example.cc | ||
multi_processes_example.cc | ||
optimistic_transaction_example.cc | ||
options_file_example.cc | ||
rocksdb_backup_restore_example.cc | ||
rocksdb_option_file_example.ini | ||
simple_example.cc | ||
transaction_example.cc |
README.md
- Compile RocksDB first by executing
make static_lib
in parent dir - Compile all examples:
cd examples/; make all