SQLite vs TokuMX: What are the differences?
Developers describe SQLite as "A software library that implements a self-contained, serverless, zero-configuration, transactional SQL database engine". SQLite is an embedded SQL database engine. Unlike most other SQL databases, SQLite does not have a separate server process. SQLite reads and writes directly to ordinary disk files. A complete SQL database with multiple tables, indices, triggers, and views, is contained in a single disk file. On the other hand, TokuMX is detailed as "A high-performance, concurrent, compressing, drop-in replacement engine for MongoDB". TokuMX is a drop-in replacement for MongoDB, and offers 20X performance improvements, 90% reduction in database size, and support for ACID transactions with MVCC. TokuMX has the same binaries, supports the same drivers, data model, and features of MongoDB, because it shares much of its code with MongoDB.
SQLite and TokuMX can be primarily classified as "Databases" tools.
"Lightweight" is the primary reason why developers consider SQLite over the competitors, whereas "When your two-week MongoDB love affair ends, try this" was stated as the key factor in picking TokuMX.
TokuMX is an open source tool with 679 GitHub stars and 90 GitHub forks. Here's a link to TokuMX's open source repository on GitHub.