centos7中php使用memcache

技術小大人發表於2017-11-07
  1. 下載memcache伺服器:
    yum  -y  install  memcached
  2. 開啟memcache服務:
    memcached  -u  root  -p  11211  -m  64m  -d
  3. 下載php擴充套件:
    yum  -y  install  php-memcache  #注意:有php-memcache和php-memcached兩個擴充套件,這裡php是作為客戶端來呼叫memcached服務的,所以安裝php-memcache
  4. 重啟網路伺服器(apache):
    systemctl  restart  httpd
  5. 使用+測試:
    <?php
    $memcache = new Memcache;
    $memcache->connect(`localhost`, 11211) or die ("Could not connect");
    $arr = array(
    `name`=>`lee`,
    `pass`=>`123456`
    );
    $val = $memcache->get(`key`);
    if(!$val){  // 如果值在memcache中不存在,則設定他
        $memcache->set(`key`,$arr);
    }
    var_dump($val);

    centos7中php使用memcache

本文轉自 bilinyee部落格,原文連結:    http://blog.51cto.com/12173069/2071778    如需轉載請自行聯絡原作者


相關文章