在我使用Google PageSpeed Insight进行托管的网站时,我的速度提升了52分。我正在努力增加服务器响应时间,并且我一直在通过Google进行搜索。到目前为止,我发现我需要在我的httpd.conf文件中进行一些调整,例如KeepAlive和MaxRequestWorkers,因为我使用的是httpd 2.4.12。在我的httpd.conf中进行更改时,我有点偏执。我是否需要MPM工作人员才能包含KeepAlive和MaxRequestWorkers?或者我可以将它们添加到conf文件中吗?
我在我的系统上运行快速命令(在Ubuntu Server 12.04.5 LTS 32bit上运行)
@PayloadRoot(localPart = "StudentDetailsRequest", namespace = TARGET_NAMESPACE)
public @ResponsePayload StudentDetailsResponse getStudentDetails(@RequestPayload StudentDetailsRequest request) throws Exception
{
StudentDetailsResponse response = new StudentDetailsResponse();
response=studentService.execute(request);
return response;
}
我意识到这只是1G的RAM。
任何帮助将不胜感激。非常感谢你
答案 0 :(得分:0)
我建议减少服务器响应时间的一件事是使用wordpress缓存插件,如Wp-super缓存(https://wordpress.org/plugins/wp-super-cache/)。
这是彻底降低服务器响应时间的最快解决方案。您可能必须通过Ajax移动动态组件以防止该部分返回缓存的结果。
这些插件使用简单,无需多少代码调整即可在速度方面获得更好的结果