Use Redis for the Magento page and default cache
用Redis做magento的缓存是可以很直接地提高magento系统运行速度的. 肉眼就能感觉到比系统默认的文件缓存快很多.
配置: 修改magento配置文件 app/etc/env.php
, 下面是官网文档给的配置文件
'cache' => [
'frontend' => [
'default' => [
'backend' => 'Cm_Cache_Backend_Redis',
'backend_options' => [
'server' => '127.0.0.1',
'database' => '0',
//'password'=>'redis_password',
'port' => '6379'
],
],
'page_cache' => [
'backend' => 'Cm_Cache_Backend_Redis',
'backend_options' => [
'server' => '127.0.0.1',
'port' => '6379',
'database' => '1',
//'password'=>'redis_password',
'compress_data' => '0'
]
]
]
],
说明: 上面的配置文件加了redis的密码, 如果redis不设密码可以忽略password设置
这里就简单记录下,方便日后查找