LNMP架构的优化-------MemCache对php页面的缓存加速优化
1.什么是MemCache?
memcache是一个高性能的分布式的内存对象缓存系统,用于动态Web应用以减轻数据库负担。
memcache通过在内存里维护一个统一的巨大的hash表,来存储经常被读写的一些数组与文件,从而极大的提高网站的运行效率。
memcache是一种内存缓存技术,是一种缓存手段,要看情况来使用。
对于频繁读取,每次读取重复率高,数据更新频度低的数据,用memcache可以优化你的系统响应速度。
2.MemCache的工作流程
检查客户端的请求数据是否在memcached中,如有,直接把请求数据返回,不再对数据库进行任何操作
如果请求的数据不在memcached中,就去查数据库,把从数据库中获取的数据返回给客户端,同时把数据缓存一份到memcached中(memcached客户端不负责,需要程序明确实现)
每次更新数据库的同时更新memcached中的数据,保证一致性。 当分配给memcached内存空间用完之后,会使用LRU(Least
Recently Used,最近最少使用)策略加上到期失效策略,失效数据首先被替换,然后再替换掉最近未使用的数据。
3.为什么要使用Memcache ?
主要用于动态Web应用以减轻数据库的负载。它通过在内存中缓存数据和对象来减少读取数据库的次数,从而提高了网站访问的速度
memcache使用场景:
-
访问频繁的字典数据
-
大量的hot数据
-
页面缓存
-
频繁的查询条件和结果
-
临时处理的数据
了解了MemCache是什么了以后,下面通过实验具体感受一下它的缓存优化加速吧!!!!!!!!!!!!!
4.MemCache对php页面的缓存加速优化
1.解压memcache源码包:
tar zxf memcache-4.0.5.2.tgz
2.将php编译完成的二进制命令加入环境变量中:
cd memcache-4.0.5.2
phpize
vim ~/.bash_profile
写入:
11 PATH=$PATH:$HOME/bin:/usr/local/lnmp/mysql/bin:/usr/local/lnmp/php/bin
source ~/.bash_profile
phpize
yum install autoconf -y #安装需要的软件
phpize
执行过程:
[root@server2 lnmp]# tar zxf memcache-4.0.5.2.tgz
[root@server2 lnmp]# ls
memcache-4.0.5.2 nginx-1.18.0 package.xml
memcache-4.0.5.2.tgz nginx-1.18.0.tar.gz php-7.4.1
mysql-5.7.30 oniguruma-5.9.5-3.el7.x86_64.rpm php-7.4.1.tar.gz
mysql-boost-5.7.30.tar.gz oniguruma-devel-5.9.5-3.el7.x86_64.rpm wordpress-5.3.2-zh_CN.tar.gz
[root@server2 lnmp]# cd memcache-4.0.5.2/
[root@server2 memcache-4.0.5.2]# ls
cloudbuild.yaml config.m4 CREDITS Dockerfile LICENSE php7 tests
config9.m4 config.w32 docker example.php memcache.php README
[root@server2 memcache-4.0.5.2]# phpize
-bash: phpize: command not found
[root@server2 memcache-4.0.5.2]# vim ~/.bash_profile
[root@server2 memcache-4.0.5.2]# source ~/.bash_profile
[root@server2 memcache-4.0.5.2]# phpize
Configuring for:
PHP Api Version: 20190902
Zend Module Api No: 20190902
Zend Extension Api No: 320190902
Cannot find autoconf. Please check your autoconf installation and the
$PHP_AUTOCONF environment variable. Then, rerun this script.
[root@server2 memcache-4.0.5.2]# yum install autoconf -y
Loaded plugins: product-id, search-disabled-repos, subscription-manager
This system is not registered with an entitlement server. You can use subscription-manager to register.
rhel7 | 4.3 kB 00:00:00
Resolving Dependencies
--> Running transaction check
---> Package autoconf.noarch 0:2.69-11.el7 will be installed
--> Processing Dependency: perl(Data::Dumper) for package: autoconf-2.69-11.el7.noarch
--> Running transaction check
---> Package perl-Data-Dumper.x86_64 0:2.145-3.el7 will be installed
--> Finished Dependency Resolution
Dependencies Resolved
====================================================================================================
Package Arch Version Repository Size
====================================================================================================
Installing:
autoconf noarch 2.69-11.el7 rhel7 701 k
Installing for dependencies:
perl-Data-Dumper x86_64 2.145-3.el7 rhel7 47 k
Transaction Summary
====================================================================================================
Install 1 Package (+1 Dependent package)
Total download size: 748 k
Installed size: 2.3 M
Downloading packages:
----------------------------------------------------------------------------------------------------
Total 17 MB/s | 748 kB 00:00:00
Running transaction check
Running transaction test
Transaction test succeeded
Running transaction
Installing : perl-Data-Dumper-2.145-3.el7.x86_64 1/2
Installing : autoconf-2.69-11.el7.noarch 2/2
Verifying : perl-Data-Dumper-2.145-3.el7.x86_64 1/2
Verifying : autoconf-2.69-11.el7.noarch 2/2
Installed:
autoconf.noarch 0:2.69-11.el7
Dependency Installed:
perl-Data-Dumper.x86_64 0:2.145-3.el7
Complete!
[root@server2 memcache-4.0.5.2]# phpize
Configuring for:
PHP Api Version: 20190902
Zend Module Api No: 20190902
Zend Extension Api No: 320190902
[root@server2 memcache-4.0.5.2]#
phpize是用来扩展php扩展模块的,通过phpize可以建立php的外挂模块,比如你想在原来编译好的php中加入memcached或者ImageMagick等扩展模块,可以使用phpize。
phpize工具是在php安装目录下,基于这点phpize对应了当时的php环境,所以是要根据该php的配置情况生成对应的configure文件,建立一个configure文件。必须在一个目录下去运行phpize,那么phpize就知道你的的环境是哪个目录,并且configure文件建立在该目录下。
3 编译安装memcache源码包:
./configure --with-php-config=/usr/local/lnmp/php/bin/php-config
make && make install #安装完成后最后一行会有一个路径,复制下来
4 在php的配置文件中添加memcache模块:
cd /usr/local/lnmp/php/etc/
ls
vim php.ini
写入:
759 extension_dir = "/usr/local/lnmp/php/lib/php/extensions/no-debug-non-zts-20190902/"
913 extension=memcache.so
编译安装之后得到的目录
修改完配置文件之后:
/etc/init.d/php-fpm reload #重新加载php
php -m | grep memcache #过滤memcache模块,发现已经有了这个模块
php -m | grep mysql #同时支持mysql
5.安装memcache工具并启动memcache:
yum install memcached -y
cat /etc/sysconfig/memcached
systemctl start memcached
Memcache和memcached的区别:
Memcache是这个项目的名称,而memcached是它服务器端的主程序文件名。
6.安装telnet:
telnet
yum install telnet -y
telnet
telnet localhost 11211
7.将测试文件复制到nginx的默认发布页面,设置memcached的密码:
cd memcache-4.0.5.2
cp memcache.php example.php /usr/local/lnmp/nginx/html/
cd /usr/local/lnmp/nginx/html/
ls
vim memcache.php
修改:
22 define('ADMIN_USERNAME','memcache'); // Admin Username
23 define('ADMIN_PASSWORD','xiaoxu'); // Admin Password
28 $MEMCACHE_SERVERS[] = '192.168.43.72:11211'; // add more as an array
29 #$MEMCACHE_SERVERS[] = 'mymemcache-server2:11211'; // add more as an array
测试:
访问192.168.43.72:/memcache.php #该页面显示了访问命中率(先不要关闭该页面)
压力测试:加速页面example.php和没加速index.php的对比(错误率对比,相应时间对比)
ab -c 10 -n 5000 http://192.168.43.72/index.php
ab -c 10 -n 5000 http://192.168.43.72/example.php
我们发现,没有用memcache的PHP不仅速度慢,而且命中率不高
刷新刚才的页面
我们不难发现,命中率为100%!!!!!!