The article compares the performance of SQLite and filesystem I/O, finding that SQLite reads and writes small blobs 35% faster than the same blobs stored in individual files on disk. This performance difference arises from the reduced overhead of open() and close() system calls when using SQLite. The article also notes that SQLite uses about 20% less disk space than storing blobs in individual files. The measurements were made using a version of SQLite between 3.19.2 and 3.20.0.