viewtopic.php?t=2561886
So I am trying memcached. I don't think my forum is that big and popular so I'm not sure how much extra speed this will provide but if it can improve server response time without any side-effects (other than setup time) then why not? Or is memcached rather useless for smaller forums that don't have a lot of traffic?
Anyway, I have a Debian system and used this to install memcached and php-memcached .
https://linuxize.com/post/how-to-instal ... debian-10/
Code: Select all
apt install memcached
apt install php-memcached
Code: Select all
$acm_type = 'file';
Code: Select all
$acm_type = 'memcached';
So... my point of posting this is 1. to get feedback on the above (whether I did it right, whether it's worth it for "small" forums, etc.), and 2. to help others who may want to use memcached by providing the above information.
Oh... and 3. is there an easy way to tell that memcached is working properly? If my forum is working properly after changing $acm_type to 'memcached' then does that mean it's working as expected with memcached?