ENXF NET
Corporal
- Tham gia
- 11/12/2018
- Bài viết
- 166
- Được Like
- 69
Em muốn sử dụng redis cache và memcached cùng trên 1 site thì có được không và cách thực hiện ạ
Em thêm code này trong config thì chỉ chạy memcache, cảm ơn mn
Mã:
// START Redis configuration //
$config['cache']['enabled'] = true;
$config['cache']['sessions'] = true;
$config['cache']['namespace'] = 'xfredis_';
$config['cache']['provider'] = 'SV\RedisCache\Redis';
$config['cache']['config'] = array(
'server' => '127.0.0.1',
'port' => 6379,
'connect_retries' => 2,
'use_lua' => true,
'compress_data' => 2,
'read_timeout' => 1,
'timeout' => 1,
'serializer' => 'igbinary',
);
// END Redis configuration //
$config['cache']['enabled'] = true;
$config['pageCache']['lifetime'] = 300;
$config['cache']['sessions'] = true;
$config['cache']['provider'] = 'Memcached';
$config['cache']['config'] = ['servers' => [['localhost', 11211]]];
$config['pageCache']['enabled'] = true;
$config['cache']['context']['page']['provider'] = 'Memcached';
$config['cache']['context']['page']['config'] = ['servers' => [['localhost', 11211]]];
Bài viết liên quan