Wordpress recommends the use of a "Persistent Object Cache." AlpineWeb Hosting includes a memcached service, a high-performance, distributed memory object caching system. To make use of memcached begin by adding the following line to the Wordpress configuration file, wp-config.php.
$memcached_servers = array( 'default' => array( '127.0.0.1:11211' ) );
Edit the wp-config.php file
- Login to cPanel
- Navigate to the Files Panel
- Open File Manager
- Navigate to the WordPress install directory and select the wp-config.php file
- Click on Edit
- Scroll down and locate the following line:
/* Add any custom values between this line and the "stop editing" line. */ - Insert the following line after the comment line described before:
$memcached_servers = array( 'default' => array( '127.0.0.1:11211' ) );
That is All!