- 论坛徽章:
- 0
|
memcahe已经安装好了 并且已经启动如下
[root@localhost html]# netstat -tnlup | grep memcache
tcp 0 0 192.168.60.134:11211 0.0.0.0:* LISTEN 15987/memcached
udp 0 0 192.168.60.134:11211 0.0.0.0:* 15987/memcached
[root@localhost html]# ps -ef | grep memcache
root 15987 1 0 22:37 ? 00:00:00 /usr/local/bin/memcached -d -m 128 -u root -l 192.168.60.134 -p 11211 -c 256 -P /tmp/memcached.pid
但是在ie上运行index.php这个脚本
<?php
$mem = new Memcache;
$mem->connect("192.168.60.134",11211);
$mem->set('key','This is a test',0,60);
$val = $mem->get('key');
echo $val;
?>
无法成功 出现
Fatal error: Class 'Memcache' not found in /usr/local/nginx/html/index.php on line 2
求指点 |
|