With MySQL 5.1, MySQL AB has introduced a new pluggable storage
engine architecture that allows storage engines to be loaded
into and unloaded from a running MySQL server.
Would be nice to add a section on pointers to how to develop storage engines, how they share their work with the server, what functionality they have to implement, etc.
User Comments
Would be nice to add a section on pointers to how to develop storage engines, how they share their work with the server, what functionality they have to implement, etc.
To use the example plugin the correct INSTALL syntax is:
INSTALL PLUGIN example SONAME 'ha_example.so';
Add your own comment.