MySQL Variables skip_external_locking 数据库 参数变量解释及正确配置使用

本站中文解释

skip_external_locking参数是MySQL外部锁定参数,用来控制是否为操作系统文件系统(Flush tables)设置客户端的外部锁。这个参数通常只在某些特殊情况下使用,如果MySQL数据库不需要安全性文件系统,则可以设置该参数以加快性能。

设置skip_external_locking参数可以通过my.cnf或者命令行参数来实现:
设置my.cnf:在my.cnf文件中添加skip_external_locking,然后重启MySQL服务。
§§ COM

编辑了一下内容,因为内容不太全。

MySQL参数变量skip_external_locking用于控制是否为操作系统文件系统设置外部锁,一般用来加快数据库性能。它可以通过my.cnf文件或者命令行参数来设置,只需在my.cnf文件添加skip_external_locking,然后重启MySQL服务即可生效。

官方英文解释

skip_external_locking

Command-Line Format --skip-external-locking[={OFF|ON}]
System Variable skip_external_locking
Scope Global
Dynamic No
Type Boolean
Default Value ON

This is OFF if mysqld
uses external locking (system locking), ON
if external locking is disabled. This affects only
MyISAM table access.

This variable is set by the
--external-locking or
--skip-external-locking
option. External locking is disabled by default.

External locking affects only
MyISAM table access. For more
information, including conditions under which it can and
cannot be used, see Section 8.11.5, “External Locking”.


数据运维技术 » MySQL Variables skip_external_locking 数据库 参数变量解释及正确配置使用