我在我的ubuntu 11.04 linux上安裝了APC,我想製作一些性能基準測試,看看沒有APC的情況下,PHP的速度改進是什麼,但我不知道如何禁用/刪除APC。禁用或刪除apc
我試圖清空我apc.ini文件,但它並沒有奏效。我打開一個頁面,第一次還是之後,頁面將被保存在緩存的和我第二次加載網頁,加載速度更快。
下面是我用來測量時間的PHP文件。
<?php
function getTime()
{
$a = explode (' ',microtime());
return(double) $a[0] + $a[1];
}
$Start = getTime();
?>
<?php require_once("includes/connection.php");?>
<?php require_once("includes/functions.php");?>
<?php
find_selected_page(true);
?>
<?php require_once("includes/header.php");?>
<table id="structure">
<tr>
<td id="navigation">
<?php echo navigation_public($sel_subject,true);
// $sel_page is sent as a GLOBAL so that we can reuse is in the page area
?>
</td>
<td id="page">
<?php
if($sel_page!=NULL)
{
echo "<h2>".htmlentities($sel_page['menu_name'])."</h2>";
echo "<p>".strip_tags(nl2br($sel_page['content']),"<b><br><p><a>")."</p>";
}
else if($sel_subject!=NULL)
{
echo "<h2>".$sel_subject['menu_name']."</h2>";
}
else
{
echo "<h2>Welcome to Widget Corp</h2>";
}
?>
</td>
</tr>
</table>
<?php
$End = getTime();
echo "Time taken = ".number_format(($End - $Start),3)." secs";
?>
<?php require("includes/footer.php");?>
卸下'apc.ini'文件應該足夠了,您是否在清除該文件後重新啓動了Apache? – lanzz
我刪除了它的內容。不是文件本身。是的,我使用sudo /etc/init.d/apache2 restart重啓了我的apache。 –