我的网站响应时间很长(3 秒)。
我尝试一一停用所有插件并检查,但等待时间为 2 秒。
我也在我的活动域上使用 w3-cache wp-cache
,但等待时间是 3 秒。
今天我下载了新的 WordPress,并配置了所有设置。
我没有添加任何主题或插件并测试了它的速度;我看到 WordPress 的等待时间是 2 秒。
这意味着我的 WordPress 响应时间很长。我怎样才能减少它?
我的网站响应时间很长(3 秒)。
我尝试一一停用所有插件并检查,但等待时间为 2 秒。
我也在我的活动域上使用 w3-cache wp-cache
,但等待时间是 3 秒。
今天我下载了新的 WordPress,并配置了所有设置。
我没有添加任何主题或插件并测试了它的速度;我看到 WordPress 的等待时间是 2 秒。
这意味着我的 WordPress 响应时间很长。我怎样才能减少它?
技术堆栈中有几个层次可能是问题所在。最常见的瓶颈是网络速度、服务器资源 (RAM/CPU) 和数据库资源。
由于您的初始页面非常慢并且您的资源似乎更快,因此我可能会消除网络速度作为一个问题。如果您尝试加载一个静态 HTML 测试页面,它将确认您的网络速度是正常的。
接下来,使用默认主题在您的 WordPress普通安装上安装WP Super Cache 。快吗?如果是这样,我会怀疑您主机的 MySQL 服务器超载和过度工作。
默认情况下,大多数 Web 主机和 WP 并未设置为 100% 的速度效率,但只需稍作调整,您就可以大幅缩短速度时间。
我使用GTmetrix来测量网站速度,并实施他们的想法以提高速度,包括:
它们只是几种方法,GTmetrix 将帮助您了解是什么降低了您的网站速度以及增加它的方法。
A default WordPress install should be lightning fast if it's on an even remotely decent server. Try removing the database, recreating it, and reinstalling. Or, use phpMyAdmin to repair and optimize your tables. If this is not an option, try some janitoral DB queries like:
DELETE FROM `user_meta` um LEFT JOIN `users` u ON (um.user_id = u.ID) WHERE u.ID IS NULL
Same concept with posts & post meta, just different primary keys.
Also, if your server is not setup properly for caching, i.e. XCache or memcache not installed, properly configured, or loaded, and you're not running an uber high-traffic site, you probably don't even really need to use caching at all. If it ain't broke, don't fix it.
Or, if you have existing data that you cannot afford to lose, use WP Migrate DB to back up your existing install exporting to SQL file, follow steps above in regards to removing the original database, then import the database anew from phpMyAdmin after recreating.
从您的 Wordpress 网站获得所需的性能可能是个技巧,因为 Wordpress 平台似乎没有考虑到性能优化。
您可以通过研究性能优化技术来获得所需的结果——这可以在您的网站上手动完成,但对于技术不那么熟练的 Wordpress 用户来说可能是一种负担,特别是如果他们只是一个快速执行的 wordpress 博客。
那里有非常好的插件可以使它变得简单,但有些仍然需要技术知识。我推荐这 2 个插件,对于技术不高的用户来说,它们更容易配置。
使用 jch 优化加速您的网站- 这个插件使合并、缩小 css、javascript 和 html 变得非常容易。付费版本可以获得更多功能。
使用 W3TC 缓存您的网站- 最流行的缓存插件之一。如果你想要一些额外的速度,必须得到。