rocksdb/examples
Peter Dillinger cb5b851ff8 Add (& fix) some simple source code checks (#8821)
Summary:
* Don't hardcode namespace rocksdb (use ROCKSDB_NAMESPACE)
* Don't #include <rocksdb/...> (use double quotes)
* Support putting NOCOMMIT (any case) in source code that should not be
committed/pushed in current state.

These will be run with `make check` and in GitHub actions

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

Test Plan: existing tests, manually try out new checks

Reviewed By: zhichao-cao

Differential Revision: D30791726

Pulled By: pdillinger

fbshipit-source-id: 399c883f312be24d9e55c58951d4013e18429d92
2021-09-07 21:19:27 -07:00
..
.gitignore Support for single-primary, multi-secondary instances (#4899) 2019-03-26 16:45:31 -07:00
c_simple_example.c Make examples work on Windows (#7304) 2020-09-01 18:03:50 -07:00
CMakeLists.txt add WITH_EXAMPLES options to cmake and cleanups. (#6580) 2020-06-18 18:00:04 -07:00
column_families_example.cc Make examples work on Windows (#7304) 2020-09-01 18:03:50 -07:00
compact_files_example.cc Make examples work on Windows (#7304) 2020-09-01 18:03:50 -07:00
compaction_filter_example.cc Add (& fix) some simple source code checks (#8821) 2021-09-07 21:19:27 -07:00
Makefile make:Fix c header prototypes (#7994) 2021-03-09 20:44:23 -08:00
multi_processes_example.cc Make examples work on Windows (#7304) 2020-09-01 18:03:50 -07:00
optimistic_transaction_example.cc Make examples work on Windows (#7304) 2020-09-01 18:03:50 -07:00
options_file_example.cc Bring the Configurable options together (#5753) 2020-09-14 17:01:01 -07:00
README.md Improve examples/README.md 2015-12-16 16:27:37 +01:00
rocksdb_option_file_example.ini Refactor trimming logic for immutable memtables (#5022) 2019-08-23 13:55:34 -07:00
simple_example.cc Make examples work on Windows (#7304) 2020-09-01 18:03:50 -07:00
transaction_example.cc Make examples work on Windows (#7304) 2020-09-01 18:03:50 -07:00

  1. Compile RocksDB first by executing make static_lib in parent dir
  2. Compile all examples: cd examples/; make all