Performance Symfony book提到在某些类移动时需要刷新APC缓存,这确实是需要的。
但是,我没有找到如何清除自动加载器的APC缓存。我尝试使用PHP apc_clear_cache()
函数,但它没有帮助。
如何清除此APC缓存?
答案 0 :(得分:5)
正如Mauro所提到的,apc_clear_cache也可以通过论证来清除不同类型的apc缓存:
apc_clear_cache();
apc_clear_cache('user');
apc_clear_cache('opcode');
还有ApcBundle添加了Symfony apc:clear命令。
答案 1 :(得分:2)
只需创建一个简单的控制器ApcController,如下所示
<?php
namespace Rm\DemoBundle\Controller;
use Symfony\Bundle\FrameworkBundle\Controller\Controller;
use Symfony\Component\HttpFoundation\Request;
use Sensio\Bundle\FrameworkExtraBundle\Configuration\Route;
use JMS\SecurityExtraBundle\Annotation\Secure;
/**
* apc cache clear controller
*/
class ApcController extends Controller
{
/**
* clear action
*
* @Route("/cc", name="rm_demo_apc_cache_clear")
*
* @Secure(roles="ROLE_SUPER_ADMIN, ROLE_ADMIN")
*
* @param \Symfony\Component\HttpFoundation\Request $request
*/
public function cacheClearAction(Request $request)
{
$message = "";
if (function_exists('apc_clear_cache')
&& version_compare(PHP_VERSION, '5.5.0', '>=')
&& apc_clear_cache()) {
$message .= ' User Cache: success';
} elseif (function_exists('apc_clear_cache')
&& version_compare(PHP_VERSION, '5.5.0', '<')
&& apc_clear_cache('user')) {
$message .= ' User Cache: success';
} else {
$success = false;
$message .= ' User Cache: failure';
}
if (function_exists('opcache_reset') && opcache_reset()) {
$message .= ' Opcode Cache: success';
} elseif (function_exists('apc_clear_cache')
&& version_compare(PHP_VERSION, '5.5.0', '<')
&& apc_clear_cache('opcode')) {
$message .= ' Opcode Cache: success';
} else {
$success = false;
$message .= ' Opcode Cache: failure';
}
$this->get('session')->getFlashBag()
->add('success', $message);
// redirect
$url = $this->container
->get('router')
->generate('sonata_admin_dashboard');
return $this->redirect($url);
}
}
然后将控制器路线导入 routing.yml
#src/Rm/DemoBundle/Resources/config/routing.yml
apc:
resource: "@RmDemoBundle/Controller/ApcController.php"
type: annotation
prefix: /apc
现在您可以使用以下网址清除apc缓存:
http://yourdomain/apc/cc
注意:@Secure(roles =“ROLE_SUPER_ADMIN,ROLE_ADMIN”)注释,这将保护您的apc缓存网址免受未经授权的访问。