gpt4 book ai didi

php - Win7上的XAMPP太慢了

转载 作者:IT王子 更新时间:2023-10-29 01:22:51 24 4
gpt4 key购买 nike

我在 Windows 7 旗舰版上运行 XAMPP 1.7.1。除速度外,一切(Apache 和 MySQL)都运行良好。

当我打开 http://localhost/ ,我必须等待大约 1-3 秒才能查看网页。在我看来,最多应该是几百毫秒。

基本事实:

  • 在等待加载本地主机网页时,状态栏显示“正在等待本地主机...”
  • CPU 仍然空闲(加载时没有增加事件)
  • 在本地主机上没有要求很高的 PHP 脚本,即使有很长很重的脚本,当有简单的 phpinfo() 时也会出现问题。
  • 禁用 MySQL 服务器不影响速度
  • 我的电脑:AMD Turion 64 X2; 1.6 GHz 双核、2 GB 内存、100 GB 硬盘

我制作了一个简单的基准 PHP 脚本来测试 HDD/CSS 速度:

<?php

function getmicrotime() {
list($usec, $sec) = explode(" ", microtime());
return ((float)$usec + (float)$sec);
}

function testReadWrite() {
$timeStart = getmicrotime();
$filename = "test.txt";

file_put_contents( $filename, '' ); // prepare empty file

for ( $i = 0; $i < 1000; $i++ ) {
$a = file_get_contents( $filename );
file_put_contents( $filename, $a . '.' );
}

return round( getmicrotime() - $timeStart, 3 );
}


function testCpuSpeed() {
$timeStart = getmicrotime();

$var = '';
for ( $i = 0; $i < 100000; $i++ ) {
$var = sha1( md5( $i * $i * $i * $i * $i * $i * $i * $i * $i * $i ) );
}

return round( getmicrotime() - $timeStart, 3 );
}

echo "Read/write #1: " . testReadWrite() . "<BR>";
echo "Read/write #2: " . testReadWrite() . "<BR>";
echo "Read/write #3: " . testReadWrite() . "<BR>";
echo "CPU speed #1: " . testCpuSpeed() . "<BR>";
echo "CPU speed #2: " . testCpuSpeed() . "<BR>";
echo "CPU speed #3: " . testCpuSpeed() . "<BR>";

?>

我的电脑结果:

  • 读/写:5.134/3.431/3.494
  • CPU 速度:0.816/0.767/0.795

虚拟主机结果:

  • 读/写:7.768/7.69/7.371
  • CPU 速度:0.232/0.234/0.234

我的服务器的一个结果(几乎和我的 PC 一样空闲的计算机,但速度快一点):

  • 读/写:0.088/0.168/0.185
  • CPU 速度:0.191/0.189/0.189

所以我不认为这是因为我的 PC 速度,但我确定还有其他问题。您对 Windows 7(或 Vista)上的 XAMPP 速度有一些经验吗?

谢谢。

最佳答案

如果 XAMP 在 Windows 7 下运行缓慢,防火墙设置没有影响。
Security Essentials 防病毒软件没有任何区别。

要解决这个问题,有两点影响很大:

1) 在 windows\system32\drivers\etc\hosts 添加以下行:

127.0.0.1 127.0.0.1

127.0.0.1 本地主机

2) 如果您使用的是 PHP,请在 XAMP php.ini 文件中取消注释 eaccelerator 行:

zend_extension = "C:\xampp\php\ext\php_eaccelerator_ts.dll"

做完这两个改动,重启Apache,速度会快很多。

关于php - Win7上的XAMPP太慢了,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1891031/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com