Some good points here: Surprisingly Slow. I’m thinking about installing zstandard for my PHP… see Better Compression with Zstandard for some numbers.
Daily Archives: 2021-04-07 [Wednesday]
Idempotence Now Prevents Pain Later
I enjoyed reading this one today: Idempotence Now Prevents Pain Later. Some clear thinking.
Ignoring MySQL constraints
You can disable foreign key checks with
SET foreign_key_checks = 0;
And you can disable unique index checks with
SET unique_checks = 0;