centos/ubuntu运行wordpress安装redis优化速度

wordpress安装memcache后感觉提速不明显,改为用redis的确是比memcache快些,但更占内存多一点,不过相对提升的速度,完全值得。

下面是centos脚本

yum install redis -y
systemctl enable redis
service redis start
yum install php74-php-redis  -y
service php74-php-fpm restart

# 修改 wordpress 配置
vi /var/www/html/wp-config.php
define('WP_CACHE_KEY_SALT', 'example.com');
define('WP_CACHE', true);


# 安装  Redis Object Cache 插件可以看到使用情况, 用 query monitor可观察有没有使用缓存 
# 如内存有限,需要限制redis使用的内存
sudo vim /etc/redis/redis.conf
maxmemory 256mb 
maxmemory-policy allkeys-lru

ubuntu安装脚本

与centos差不多,装完记得改wordpress哦

# ubuntu
apt install redis -y
systemctl enable redis-server
service redis start
apt install php-redis -y
service php7.4-fpm restart

你可能感兴趣的:(redis,centos,缓存)