I love to use APC (Alternative PHP Cache) in most of my projects, because its boost every PHP app.
I also switched APC on for mint. But in the “System Cache Entries” tab of the GUI (apc.php) only the index.php and the path.php where displayed.
i replace this line in the index.php:
if (!defined('MINT_ROOT')) {
define('MINT_ROOT', '');
}
with this line:
if (!defined('MINT_ROOT')) {
define('MINT_ROOT', dirname(__FILE__) . '/');
}
and now all mint / pepper related files (about 20 files ~ 5 MB) are cache now.
hope it helps someone.