且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

如何减少页面加载时间,加快我的网站在感知编码点?

更新时间:2023-12-04 22:50:46

这是不可能用任何具体的东西回答这个问题,因为它是如此通用。



你的第一步是确定瓶颈是。



然后你确定是什么导致了这些瓶颈并解决了这些问题。这可能涉及重写代码以获得更好的性能,重新配置Web服务器,重写代码以支持缓存输出或缓存数据,...



然后返回第一步并重新做一遍。
It's not really possible to answer this question with anything specific because it's so generic.

Your first step is to determine where the bottlenecks are.

You then determine what's causing those bottlenecks and fix those problems. This may involve rewriting code for better performance, reconfiguring the web server, rewriting your code to support caching output or caching data, ...

Then go back to step one and do it all over again.