If it's larger forum presumably it's VPS or better with root access. phpBB supports both OPcache and Memcached.
When I say support for OPcache you can use optimized OPcache configuration
If you have memcached installed open config.php and find:
Replace with:
When I say support for OPcache you can use optimized OPcache configuration
opcache.validate_timestamps=0
Once loaded into RAM scripts are never loaded from disk. phpBB will invalidate individual files as required, e.g. cache files. Purging the cache from ACP will also completely purge OPcache. The caveat is if you upgrade or any uploaded php script with same name you need to purge old one(s) from OPcache.If you have memcached installed open config.php and find:
Code:
$acm_type = 'phpbb\\cache\\driver\\file';
Code:
$acm_type = 'phpbb\\cache\\driver\\memcached';
Statistics: Posted by thecoalman — Sat Sep 21, 2024 9:11 pm