如何调整app.php文件以部署Symfony2应用程序并获得最佳性能

时间:2015-09-12 17:11:10

标签: php symfony deployment apc symfony-2.7

我将在几天内部署一个Symfony2应用程序,所以我要问一些关于app.php文件和设置正确的生产环境的事情。所以这是默认的app.php文件内容:

<?php

use Symfony\Component\ClassLoader\ApcClassLoader;
use Symfony\Component\HttpFoundation\Request;

$loader = require_once __DIR__.'/../app/bootstrap.php.cache';

// Enable APC for autoloading to improve performance.
// You should change the ApcClassLoader first argument to a unique prefix
// in order to prevent cache key conflicts with other applications
// also using APC.
/*
$apcLoader = new ApcClassLoader(sha1(__FILE__), $loader);
$loader->unregister();
$apcLoader->register(true);
*/

require_once __DIR__.'/../app/AppKernel.php';
//require_once __DIR__.'/../app/AppCache.php';

$kernel = new AppKernel('prod', false);
$kernel->loadClassCache();
//$kernel = new AppCache($kernel);

// When using the HttpCache, you need to call the method in your front controller instead of relying on the configuration parameter
//Request::enableHttpMethodParameterOverride();
$request = Request::createFromGlobals();
$response = $kernel->handle($request);
$response->send();
$kernel->terminate($request, $response);

以下是我的疑惑:

  • 我应该启用APC加载程序吗?这将提高我的应用程序速度或这将做什么?
  • 如果我启用APC缓存加载程序,这将是清除APC缓存的正确命令?
  • 我是否需要AppCache.php并删除AppKernel.php
  • 我正在使用PHP 5.6并启用了Zend OPCache,我是否应该安装并启用APC Cache并使用它来代替默认的Zend OPCache?

如果你有任何prod ready app.php文件,你可以分享它吗?还有你的想法和建议吗?

0 个答案:

没有答案