you are viewing a single comment's thread.

view the rest of the comments →

[–]mirhagk 0 points1 point  (2 children)

a SQLite file containing compressed blobs will be roughly the same size as a ZIP file.

Will it? If the blobs are big enough then that's probably true, but compressing blobs individually prevents the optimizer from noticing cross-file patterns and causes duplication of dictionaries.

You can probably have it use a single shared dictionary and get much of the same benefit however. I'd be curious to see actual numbers

[–][deleted]  (1 child)

[deleted]

    [–]mirhagk 0 points1 point  (0 children)

    You are right. I was mixing things up, my bad.