MariaDB 空表优化技术
空表优化,释放空间。
MariaDB [lmlphp]> optimize table lmlphp_table_name; +--------------------------+----------+----------+-------------------------------------------------------------------+ | Table | Op | Msg_type | Msg_text | +--------------------------+----------+----------+-------------------------------------------------------------------+ | lmlphp.lmlphp_table_name | optimize | note | Table does not support optimize, doing recreate + analyze instead | | lmlphp.lmlphp_table_name | optimize | status | OK | +--------------------------+----------+----------+-------------------------------------------------------------------+ 2 rows in set (0.08 sec)
以上,使用 truncate table 效果应该是一样的。
空表使用 optimize 速度真的很快啊。
暂无