memcached 实验 php程序调用

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了memcached 实验 php程序调用相关的知识,希望对你有一定的参考价值。

vi /etc/php.ini

加一行

extension=memcache.so

加入自启动

systemctl enable memcached

技术分享图片

yum install php

技术分享图片

[[email protected] ~]# systemctl start httpd

[[email protected] ~]# systemctl httpd enable

启动下,然后加入自动启动

访问下虚拟机,已经apache起来了

http://192.168.209.147/

技术分享图片


/var/www/html 目录放一个info.php和test.php来进行测试

info 内容如下

<?php

phpinfo();

?>

test 内容如下

< ?php

$mem = new Memcache;

$mem->connect(“127.0.0.1″, 11211);

$mem->set(‘key’, ‘This is a test!’, 0, 60);

$val = $mem->get(‘key’);

echo $val;

?>

< ?php

$mem = new Memcache;

$mem->connect("192.168.209.147", 11211);

$mem->set('key', 'This is a test!', 0, 60);

$val = $mem->get('key');

echo $val;

?>

http://192.168.209.147/info.php

技术分享图片



以上是关于memcached 实验 php程序调用的主要内容,如果未能解决你的问题,请参考以下文章

Linux 安装Memcache扩展支持

nginx+memcached构建页面缓存

Memcache和Redis复习总结

memcache安装以及php_memcache.dll 扩展安装

windows下安装Memcached服务器,PHP的memcache扩展

windows下XAMPP安装php_memcache扩展