Open GoogleCodeExporter opened 8 years ago
Hmm, looks like LobStorageMap, ie. the LOB storage class we use for the
MVStore, does not implement LOB compression.
Original comment by noelgrandin
on 16 Sep 2014 at 12:11
Yes, LobStorageMap doesn't support compression. However, the MVStore does
support compression:
http://h2database.com/javadoc/org/h2/engine/DbSettings.html#COMPRESS - that
means with H2 version 1.4.x, except when explicitly disabling the MVStore, you
can use the database URL jdbc:h2:~/test;compress=true to basically get the same
as compress_lob, but in addition to compressing just the lob data, all data is
compressed.
In future versions of H2, compress_lob will be removed.
In the meantime, I think it makes sense to document that compress_lob only
applies to version 1.3.x or 1.4.x with MVStore disabled.
Original comment by thomas.t...@gmail.com
on 16 Sep 2014 at 7:10
Original issue reported on code.google.com by
altin.p...@gmail.com
on 15 Sep 2014 at 10:12