安装memcached

sudo yum install memcached.x86_64

安装php-pecl-memcached

php memcache有两个实现类

php-pecl-memcache.x86_64 : Extension to work with the Memcached caching daemon
php-pecl-memcached.x86_64 : Extension to work with the Memcached caching daemon

我们需要装

sudo yum install php-pecl-memcached.x86_64

否则,在PHP中会报错

Fatal error: Class 'Memcache' not found

启动memcached并测试php

sudo service memcached stop
sudo service memcached start

新建php-mem.php

<?php
$mem = new Memcache;
$mem->connect("localhost", 11211);
$mem->set('ryan', 'Miao', 0, 60);
$ryan = $mem->get('ryan');
echo $ryan;
?>

执行

php php-memcache.php 
Miao

相关文章:

  • 2022-12-23
  • 2021-12-12
  • 2021-10-11
  • 2021-06-16
  • 2021-11-09
  • 2021-12-18
  • 2021-10-02
  • 2021-09-17
猜你喜欢
  • 2021-05-06
  • 2022-12-23
  • 2021-09-28
  • 2022-01-25
相关资源
相似解决方案