What storage engine does wordpress 3.6 use?
mysql, wordpress
Solution
As far as I know this answer on Wordpress' support pages is still valid;
By default, WordPress uses the database's default database type. WordPress doesn't pick a type, in other words. It just takes what it gets.
As from MySQL 5.5.5, the default storage engine is InnoDB, but you can change it in my.cnf or alter your tables after the fact. If you need full text search to work in InnoDB, you'll need MySQL 5.6 or later.
Problem
The older versions of wordpress seem to use MyISAM as default storage engine with MYSQL. But with InnoDB 5.6 fulltext search is available. Is wordpress still using MyISAM or any other storage engine (or a combination) now?