my experience with cache (file, xcache, apc)

After two months I moved away from VPS back to shared hosting. With less than 100 simultaneous users I don't see a point of having forum on a VPS. I lost too much time for configuration, dealing with problems, I was paying $12 a month for cPanel license alone, as I wouldn't be able to manage things without it. Now back to litespeed shared hosting, the site is much faster. And cheaper to run! :)
 
What is the config to use for php opcache? I tried this $config['cache']['backend'] = 'opcache'; but it gives me an error
 
What is the config to use for php opcache? I tried this $config['cache']['backend'] = 'opcache'; but it gives me an error
None, it's not a data cache. It's only an opcode cache, and doesn't need any settings in config.php to cache the compiled PHP pages. If you want to set the backend cache, you'll need Memcached or apcu to work with zendopcache.
 
Top Bottom