Reading the Symfony2 performance docs: http://symfony.com/doc/2.8/performance.html
I'm trying to figure out which solution is better for caching class name paths. I'm using PHP7 so APC is not available, just apcu and opcache. Given that I don't have any issues with complexity of implementing a cache or having to restart the web server, which would be the most performant? Also, if I do go with the APC Autoloader, the app.php code still has to load the composer autoload.php first, create the ApcClassLoader, then unregister the initial autoloader. Would it make sense to clear out the class map so that unused map is not wasting so much memory, i.e. run: composer dump-autoload --no-dev
?