问题描述
我只是在 Internet Information Server 7.0、Windows 7 中安装了 Bugzilla 4.0.1.Perl 由 ActivePerl 提供.当我打开每个页面时,加载一个页面几乎需要 3-5 秒.它是一个没有任何项目的空 Bugzilla.并且机器负载非常低.
I just install Bugzilla 4.0.1 in Internet Information Server 7.0, Windows 7. Perl is provided by ActivePerl.When I am opening every page, it will almost cost 3-5 seconds to load a page. It is a empty Bugzilla without any project. And machine load is very low.
我尝试使用 Internet Explorer 9.0 和 Google Chrome.加载页面的时间几乎相同,3-5秒.
I try Internet Explorer 9.0 and Google Chrome. The time to load page is almost same, 3-5 seconds.
如何配置系统以提高 Bugzilla 的性能?
How can I config the system to improve the performance of Bugzilla?
推荐答案
Bugzilla 是用 Perl 编码的,对于普通 CGI 的大中型 Web 应用程序来说,Perl 可能会很慢 - 如果要为每个请求编译 perl 脚本.我不得不在服务器中使用 mod_perl 配置 Bugzilla 以获得不错的性能.不过,那是一个 linux 盒子——我不确定 Windows 中的 mod_perl.
Bugzilla is coded in Perl, and Perl can be slow for a big-medium web applications in plain CGI - if the perl scripts are to compiled for each request. I had to configure Bugzilla with mod_perl in the server to get decent performance. That was a linux box, though - I'm not sure about mod_perl in Windows.
顺便说一句,客户端(您的浏览器)在这里无关紧要.
BTW, the client side (your browser) is irrelevant here.
这篇关于Bugzilla 性能缓慢的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!