we undergoing performance based testing on MySQL,so we are seeking for MySQL compression tool for that purpose.If anyone came to acquainted about it please let me know..
Advance Thanks,
we undergoing performance based testing on MySQL,so we are seeking for MySQL compression tool for that purpose.If anyone came to acquainted about it please let me know..
Advance Thanks,
MySQL has built-in COMPRESS
and UNCOMPRESS
functions. That'd require you to change code and use VARBINARY or BLOB columns however. As well it'd only really be of value for large columns. I'm not otherwise aware of a plugin or tool to compress a whole MySQL database. You'll probably find better luck with file system compression like ZFS that you can use under MySQL. See A look at MySQL on ZFS.
Two possible answers:
1 For compressed data storage, you may want to look at MySQLs Archive storage engine
http://dev.mysql.com/tech-resources/articles/storage-engine.html
2 The compressed protocol can in some cases speed up communication between client and server