it is good idea to disable stats update on metadata fetching in MySQL/MariaDB conf (server level) via innodb_stats_on_metadata = 0
this will prevent statistic update when we query information_schema
Most likely we do not want it anyway.
This will not make Innodb to operate without statistics at all as Innodb will still compute statistics for the table first time it opens it.
I'm using custom models and I'm fetching meta data simply by this query:
$getInfoSchema = <<<INFO
SELECT COLUMN_NAME, DATA_TYPE, COLUMN_TYPE, COLUMN_KEY, EXTRA, PRIVILEGES
FROM INFORMATION_SCHEMA.COLUMNS
WHERE TABLE_SCHEMA = 'yourDBName'
AND TABLE_NAME = 'yourTableName';
INFO;
I'm also using libMemcached as underlying adapter (Memcached server). Works like a charm.