> On Feb 28, 2019, at 3:14 PM, Wout Mertens <wout.mert...@gmail.com> wrote:
> 
> It seems to me that it could be worthwhile to do transparent compression on
> JSON strings, perhaps using a differently trained dictionary…

Regular LZ/zip type compression already does a good job on JSON, even fairly 
short bits. Not just because of repeated key strings, but because there are a 
number of very common byte sequences like
        },{    ":"    ","    {{    }}    "}    "},    "},"
(those are literal quotes)

Shox96 is an interesting idea, but it seems like a real disadvantage that it 
only compresses alphanumeric characters, fails on non-ASCII, and is biased 
toward English.

—Jens
_______________________________________________
sqlite-users mailing list
sqlite-users@mailinglists.sqlite.org
http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to