Optimizing Symfony using APC
Learn how to optimize Symfony PHP framework code on a managed VPS using APC (Alternative PHP Cache).
This article describes how to optimize Symfony PHP framework code on a managed VPS using APC (Alternative PHP Cache).
Optimizing Symfony with APC
You can optimize your Symfony PHP framework code on a managed VPS to run faster. To do this, use the APC (Alternative PHP Cache)ApcClassLoader class in your code as follows:
$loader = new ApcClassLoader('namespace_prefix', $loader);
$loader->register(true);
Note
The APC namespace prefix can be any value you want.
More Information
-
For more information about how to optimize Symfony, please visit http://symfony.com/doc/current/book/performance.html.
-
For more information about the Symfony ApcClassLoader class, please visit http://api.symfony.com/2.5/Symfony/Component/ClassLoader/ApcClassLoader.html.
Updated 3 days ago