2 Steps to Compress MySQL Tables
Two steps to make your table compressed.Set the server INNODB_FILE_FORMAT to Barracuda.mysql> SET GLOBAL INNODB_FILE_FORMAT=Barracuda;Alter table to compressed with 8KB key block size.mysql> ALTER TABLE `compressed table` ROW_FORMAT=COMPRESSED,… Read More »2 Steps to Compress MySQL Tables