Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/laysakura/mysql-yetanotherskeletonengine
Storage engine template working with MySQL 5.6 (or higher)
https://github.com/laysakura/mysql-yetanotherskeletonengine
Last synced: 17 days ago
JSON representation
Storage engine template working with MySQL 5.6 (or higher)
- Host: GitHub
- URL: https://github.com/laysakura/mysql-yetanotherskeletonengine
- Owner: laysakura
- License: bsd-3-clause
- Created: 2013-02-10T08:16:19.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2013-02-17T00:30:34.000Z (over 11 years ago)
- Last Synced: 2024-04-15T12:50:12.049Z (7 months ago)
- Language: Shell
- Size: 469 KB
- Stars: 5
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README
- Changelog: ChangeLog
- License: COPYING
Awesome Lists containing this project
README
Hi!
This is yet another skeleton engine, it does not do much. Its been put together for
documentation reasons and as a way to get someone started quickly.Yet another skeleton engine is composed by:
- Skeleton engine v0.7
- EXAMPLE storage engine of MySQL 5.6To install, grab a copy of the mysql source code and run this:
./configure --with-mysql=$HOME/src/mysql-5.6.10/ --libdir=/usr/local/mysql/
make
make installAnd then inside of MySQL:
mysql> INSTALL PLUGIN YA_SKELETON SONAME 'libskeleton_engine.so';
mysql> CREATE TABLE t (a int) ENGINE=ya_skeleton;
Query OK, 0 rows affected (0.11 sec)You will probably need to edit the Makefile.am in the src/ tree if you want
to build on anything other then Linux (and the Makefile assumes that the
server was not compiled for debug).For Solaris you can enable DTrace probes by adding to configure
--enable-dtraceHave fun!
Cheers,
-laysakura