面试中最常见的两大内容,一个就是本章主题,第二个是Redis。常常会有人说用哪个连接会比较好,事实上没有什么好和不好之分,要根据适用场景来用,短连接适用于数据刷新频度较低的场景。长连接适用于通信频繁的场景,例如访问量大的网站,聊天室,实时游戏等。下面就来详细介绍使用。
安装方式:
官网下载:memcached-1.1.12.tar.gz
libevent下载:libevent-1.1a.tar.gz
编译安装:
#tar-xzflibevent-1.1a.tar.gz#cdlibevent-1.1a#./configure--prefix=/usr#make#makeinstall#cd..#tar-xzfmemcached-1.1.12.tar.gz#cdmemcached-1.1.12#./configure--prefix=/usr#make#makeinstall
运行程序:
/usr/bin/memcached-d-m128-l192.168.1.1-p11211-uhttpd
memcached应用示例:
<?php require_once('memcached-client.php'); $options=array( 'servers'=>array('192.168.1.1:11211') 'debug'=>true, 'compress_threshold'=>10240, 'persistant'=>false ); ?>
原文来自:https://www.py.cn
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
暂无评论内容