1

我有一个网站,用 Firefox 加载一个页面需要 10 秒,而加载图像需要 10 秒。这是一个在 apache 上运行的 php 页面。图像只是静态图像。

它在 chrome 上运行得很漂亮......即时加载。

谷歌搜索的答案让我指出了一个可能的问题,即保持活动和缺乏内容长度使 Firefox 感到困惑,事实上,似乎服务器没有在静态或非静态内容上设置内容长度,而是禁用在服务器上保持活动会使加载时间加倍!

一些网站建议在浏览器上禁用保持活动,但我不愿意向所有查看该页面的人推荐!我可能是在吠叫错误的树吗?

浏览器是 Lucid Lynx 上的 firefox 3.6.8。服务器是 Apache 2.2.11。

apache.conf 已附加...我认为它是开箱即用的,尽管我将 KeepAlive 超时减少到 3 试图让页面加载是徒劳的。

我在吠叫错误的树吗?

ServerRoot "/etc/apache2"

LockFile /var/lock/apache2/accept.lock
PidFile ${APACHE_PID_FILE}
Timeout 300
KeepAlive On
MaxKeepAliveRequests 100
KeepAliveTimeout 3
<IfModule mpm_prefork_module>
    StartServers          5
    MinSpareServers       5
    MaxSpareServers      10
    MaxClients          150
    MaxRequestsPerChild   0
</IfModule>
<IfModule mpm_worker_module>
    StartServers          2
    MaxClients          150
    MinSpareThreads      25
    MaxSpareThreads      75 
    ThreadsPerChild      25
    MaxRequestsPerChild   0
</IfModule>
User ${APACHE_RUN_USER}
Group ${APACHE_RUN_GROUP}
AccessFileName .htaccess
<Files ~ "^\.ht">
    Order allow,deny
    Deny from all
</Files>
DefaultType text/plain
HostnameLookups Off
ErrorLog /var/log/apache2/error.log
LogLevel warn
Include /etc/apache2/mods-enabled/*.load
Include /etc/apache2/mods-enabled/*.conf
Include /etc/apache2/httpd.conf
Include /etc/apache2/ports.conf
LogFormat "%v:%p %h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" vhost_combined
LogFormat "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
LogFormat "%h %l %u %t \"%r\" %>s %b" common
LogFormat "%{Referer}i -> %U" referer
LogFormat "%{User-agent}i" agent
CustomLog /var/log/apache2/other_vhosts_access.log vhost_combined
Include /etc/apache2/conf.d/
Include /etc/apache2/sites-enabled/
4

2 回答 2

2

问题在于本地 DNS 查找。命令行 DNS 解析似乎没问题,而且 chrome 的速度快如闪电,这一事实隐藏了这个问题。原来chrome使用DNS预取,它不使用本地网络堆栈。这让我完全走错了方向。

创建本地绑定服务后,firefox 似乎运行良好。

因此,在与其他浏览器相同的平台上运行 chrome 时需要注意一些事项。

于 2011-02-21T14:33:37.947 回答
1

不要禁用keep-alive。它使一个连接可用于获取多个页面(或图像,或 .js 文件或 .css 文件等),从而显着减少页面加载时间。

只要确保您的脚本添加 Content-Length 标头,一切都会好起来的。

于 2010-08-06T23:03:23.393 回答