rocksdb/examples
sdong 4720ba4391 Remove RocksDB LITE (#11147)
Summary:
We haven't been actively mantaining RocksDB LITE recently and the size must have been gone up significantly. We are removing the support.

Most of changes were done through following comments:

unifdef -m -UROCKSDB_LITE `git grep -l ROCKSDB_LITE | egrep '[.](cc|h)'`

by Peter Dillinger. Others changes were manually applied to build scripts, CircleCI manifests, ROCKSDB_LITE is used in an expression and file db_stress_test_base.cc.

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

Test Plan: See CI

Reviewed By: pdillinger

Differential Revision: D42796341

fbshipit-source-id: 4920e15fc2060c2cd2221330a6d0e5e65d4b7fe2
2023-01-27 13:14:19 -08:00
..
.gitignore Add rocksdb_backup_restore_example to examples/.gitignore (#10825) 2022-11-02 15:02:09 -07:00
CMakeLists.txt add WITH_EXAMPLES options to cmake and cleanups. (#6580) 2020-06-18 18:00:04 -07:00
Makefile Add a simple example of backup and restore (#10054) 2022-06-03 23:25:31 -07:00
README.md Improve examples/README.md 2015-12-16 16:27:37 +01:00
c_simple_example.c Make examples work on Windows (#7304) 2020-09-01 18:03:50 -07:00
column_families_example.cc Run clang format against files under example/, memory/ and memtable/ folders (#10893) 2022-10-28 13:16:50 -07:00
compact_files_example.cc Run clang format against files under example/, memory/ and memtable/ folders (#10893) 2022-10-28 13:16:50 -07:00
compaction_filter_example.cc Add (& fix) some simple source code checks (#8821) 2021-09-07 21:19:27 -07:00
multi_processes_example.cc Make examples work on Windows (#7304) 2020-09-01 18:03:50 -07:00
optimistic_transaction_example.cc Remove RocksDB LITE (#11147) 2023-01-27 13:14:19 -08:00
options_file_example.cc Remove using namespace (#9369) 2022-01-12 09:31:12 -08:00
rocksdb_backup_restore_example.cc Add a simple example of backup and restore (#10054) 2022-06-03 23:25:31 -07:00
rocksdb_option_file_example.ini Remove BlockBasedTableOptions.hash_index_allow_collision (#9454) 2022-03-01 13:58:02 -08:00
simple_example.cc Run clang format against files under example/, memory/ and memtable/ folders (#10893) 2022-10-28 13:16:50 -07:00
transaction_example.cc Remove RocksDB LITE (#11147) 2023-01-27 13:14:19 -08:00

README.md

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