Welcome Guest, Not a member yet? Register   Sign In
Codeigniter 3 is too slow
#5

Hello,
Try to use memcached instead of redis
apt install memcached
apt install php7.0-memcached (change 7.0 with your php version)
then go to /application/config/config.php and chage this lines
$config['sess_driver'] = 'redis';
$config['sess_save_path'] = 'localhost';
with this
$config['sess_driver'] = 'memcached';
$config['sess_save_path'] = 'localhost:11211';

this config work with me
Reply


Messages In This Thread
Codeigniter 3 is too slow - by venkatc - 07-04-2023, 09:41 AM
RE: Codeigniter 3 is too slow - by InsiteFX - 07-04-2023, 10:26 PM
RE: Codeigniter 3 is too slow - by Vitus - 07-05-2023, 12:45 AM
RE: Codeigniter 3 is too slow - by Viver - 07-17-2023, 03:53 AM
RE: Codeigniter 3 is too slow - by kmaraymen - 07-18-2023, 11:54 AM



Theme © iAndrew 2016 - Forum software by © MyBB