My table entry was pretty long , around 10000 characters , so i’m wondering if i need to compress that myself , e.g use gzip library , before inserting to mysql ?
Current i’m using MyISAM database format.
Thanks !
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
you can use the attributes
ROW_FORMAT=COMPRESSED, KEY_BLOCK_SIZE, or both in theCREATE TABLEandALTER TABLEstatements to enable table compression. Depending on the combination of option values,InnoDBattempts to compress each pageFor more details go through below link:
Enabling Compression for a Table