https://github.com/facebook/rocksdb
Revision f89b3893c0b8304e3320057f206cfa16ff7ce4c3 authored by Islam AbdelRahman on 03 March 2017, 00:45:07 UTC, committed by Facebook Github Bot on 03 March 2017, 00:54:10 UTC
Summary:
This option is needed to be enabled for Direct IO
and I cannot think of a reason where we need to disable it

remove it and default it to true
Closes https://github.com/facebook/rocksdb/pull/1944

Differential Revision: D4641088

Pulled By: IslamAbdelRahman

fbshipit-source-id: d7085b9
1 parent cc25398
Raw File
Tip revision: f89b3893c0b8304e3320057f206cfa16ff7ce4c3 authored by Islam AbdelRahman on 03 March 2017, 00:45:07 UTC
Remove skip_table_builder_flush and default it to true
Tip revision: f89b389
ROCKSDB_LITE.md
# RocksDBLite

RocksDBLite is a project focused on mobile use cases, which don't need a lot of fancy things we've built for server workloads and they are very sensitive to binary size. For that reason, we added a compile flag ROCKSDB_LITE that comments out a lot of the nonessential code and keeps the binary lean.

Some examples of the features disabled by ROCKSDB_LITE:
* compiled-in support for LDB tool
* No backupable DB
* No support for replication (which we provide in form of TrasactionalIterator)
* No advanced monitoring tools
* No special-purpose memtables that are highly optimized for specific use cases
* No Transactions

When adding a new big feature to RocksDB, please add ROCKSDB_LITE compile guard if:
* Nobody from mobile really needs your feature,
* Your feature is adding a lot of weight to the binary.

Don't add ROCKSDB_LITE compile guard if:
* It would introduce a lot of code complexity. Compile guards make code harder to read. It's a trade-off.
* Your feature is not adding a lot of weight.

If unsure, ask. :)
back to top