Sergei Golubchik
Plugin API is new in MySQL 5.1, so you can plugin your own API commands.
Built-in versioning
Easy to maintain and distribute
Generic — allows you to load any functionality into mysqld
Plugins can add new status variables for SHOW
STATUS
For the future, plugins will allow you to add new commandline
options, new server variables, and new SQL keywords.
Plugin administration:
INSTALL PLUGIN foo SONAME 'bar.so'
UNINSTALL PLUGIN foo
SHOW PLUGINS
INFORMATION_SCHEMA.PLUGINS
–plugin-dir=/path/to/dir
Plugin types:
Storage Engines
Fulltext Search Parsers
code changes text before it goes to the FULLTEXT data
can be used to search non-plaintext data formats, such as pdf,
doc, mp3
can be used to parse …