Reduce size of archive tables BLOB: use proper PHP ini 'serialize_precision=-1'

If the archive table size is huge, check the PHP ini setting serialize_precision.
This defaults to serialize_precision=-1 since PHP 7.1 - and should not be changed.

If changed the BLOBs in the archive tables become huge.

E.g. serialize_precision=100 results in:

php -r 'echo serialize((float)0.402);
'd:0.40200000000000002398081733190338127315044403076171875;

Also see:

More topics about archive table size:

1 Like