php中Memcached是什么?

面试中最常见的两大内容,一个就是本章主题,第二个是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
喜欢就支持一下吧
点赞11 分享
评论 抢沙发
头像
欢迎您留下宝贵的见解!
提交
头像

昵称

取消
昵称表情代码图片

    暂无评论内容