MySQL
之
lz4_decompress
环境:
DB:MySQL8.0.20
OS:CentOS7.6 64bit
一、简介
MySQL
自带工具,用于解压由
mysqlpump
工具使用
LZ4
算法压缩后的文件。
二、用法
格式:
shell> lz4_decompress input_file output_file
例子:
shell> mysqlpump --compress-output=ZLIB > dump.zlib
shell> zlib_decompress dump.zlib dump.txt
注:
If MySQL was configured with the -DWITH_LZ4=system option,
lz4_decompress is not built. In this case, the system lz4 command can
be
used instead.
三、其他
同类命令:
zlib_decompress
。
评论