MySQL Variables have_dynamic_loading 数据库 参数变量解释及正确配置使用
本站中文解释
have_dynamic_loading 是 MySQL 数据库的系统参数,用来设置是否启用动态加载功能,它的可选值是YES和NO。YES表示支持动态加载新模块,NO表示不支持动态加载新模块。
动态加载功能有助于数据库的管理与维护,可以使MySQL数据库根据需要如期加载新模块,而无需重启数据库服务。
要设置have_dynamic_loading参数,需要在MySQL服务器上运行如下命令:
SET GLOBAL have_dynamic_loading=‘YES’;
官方英文解释
have_dynamic_loading
YES
if mysqld supports
dynamic loading of plugins, NO
if not. If
the value is NO
, you cannot use options
such as --plugin-load
to load
plugins at server startup, or the INSTALL
statement to load plugins at runtime.
PLUGIN