Home > Article > Backend Development > How to configure and use Memcache in PHP
How to configure and use Memcache in PHP
Memcache is a commonly used memory caching system that can be used to speed up website access and reduce database pressure. Configuring and using Memcache in PHP is very simple, detailed steps and code examples are described below.
Step 1: Install and start Memcache
Before you begin, you first need to install and start Memcache in your system. It can be installed on Ubuntu through the following command:
sudo apt-get install memcached
After successful installation, you can start the Memcache service through the following command:
sudo service memcached start
Step 2: Install and start the Memcache extension
Using Memcache in PHP requires the help of Memcache extension. It can be installed on Ubuntu through the following command:
sudo apt-get install php-memcache
After successful installation, you need to enable the Memcache extension in the php.ini file. The location of the php.ini file can be found with the following command:
php --ini
Then add or uncomment the following line in the found php.ini file:
extension=memcache.so
After saving the file, restart the Apache server to use Changes take effect:
sudo service apache2 restart
Step 3: Configure and use Memcache
Configuring and using Memcache is very simple. You can use the following steps in PHP code:
$memcache = new Memcache; $memcache->connect('localhost', 11211);
The above code creates a Memcache object and connects to the local Memcache server.
// 设置数据 $memcache->set('key', 'value'); // 获取数据 $value = $memcache->get('key');
You can set data through the set method and obtain data through the get method.
$memcache->set('key', 'value', MEMCACHE_COMPRESSED, 3600);
You can set the data by specifying the expiration time of the data (in seconds) in the fourth parameter of the set method expiration time. In the above example, the data will expire after one hour.
$memcache->delete('key');
Specified data can be deleted through the delete method.
$memcache->increment('key', 1); $memcache->decrement('key', 1);
You can increase the value of data through the increment method and decrease the value of data through the decrement method.
$memcache->flush();
You can refresh all data through the flush method and clear all data on the Memcache server.
$memcache->close();
You can close the connection with the Memcache server through the close method.
Note: The above code example is based on the use of Memcache extension. If you are using Memcached extension, the code is slightly different.
To sum up, configuring and using Memcache is very simple. With a few simple lines of code, you can easily use Memcache for data caching in PHP. Using Memcache can significantly improve website access speed and reduce database pressure, and is worthy of widespread use in development.
The above is the detailed content of How to configure and use Memcache in PHP. For more information, please follow other related articles on the PHP Chinese website!