中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

php+memcached配置

發布時間:2020-08-21 05:47:04 來源:網絡 閱讀:503 作者:gloryhole 欄目:web開發


 

 

memcache-2.2.6.tgz         ------------------memcachephp擴展

memcached-1.4.13.tar.gz    ----------------------memcache服務端軟件

 

安裝memcached

安裝該軟件時需要libevent的支持,

tar -zxvf libevent-2.0.21-stable.tar.gz

cd libevent-2.0.21-stable/

./configure

make

make install

 

 

安裝 memcached

tar -zxvf memcached-1.4.11.tar.gz

cd memcached-1.4.11/

./configure --prefix=/usr/local/memcached--with-libevent=/usr

make

make install

 

 

啟動memcached:

memcached -d -m 10 -u root -l 0.0.0.0 -p 12000 -c 256-P /tmp/memcached.pid

 

 

驗證memcached:

ps -ef|grep mem

netstat -tnulp|grep mem

 

 

 

關閉memcached

cat /tmp/memcached.pid

949

kill -9 949

 

 

安裝phpmemcache擴展

tar -zxvf memcache-2.2.6.tgz

cd memcache-2.2.6/

/usr/local/php/bin/phpize

./configure --enable-memcache--with-php-config=/usr/local/php/bin/php-config

make

make install

 

接下來修改php配置文件php.ini

vi php.ini

extension=memcache.so

 

 

測試memcachephp擴展是否安裝成功

memcached -d -m 10 -u root -l 0.0.0.0 -p 12000 -c 256-P /tmp/memcached.pid

 

 

 

/usr/local/apache/bin/apachectl start

 

cd /usr/local/apache/htdocs

vi mem_test.php

<?php

  $mem=newMemcache;

 $mem->connect("10.10.10.16",12000);

 $mem->set('hello','world',0,60);

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

  echo $val;

?>

 

 

如果可以看到world,那你的memcachephp擴展就成功了


 php+memcached配置

 

 

memcachephp的配合使用

phpmemcache結合測試代碼

cd /usr/local/apache/htdocs

 

vim  php-mem.php

 

<?php

  //connect

  $mem = newMemcache;

 $mem->connect('10.10.10.16',12000);

 

  //save data

 $mem->set('key1','this is first value',0,60);

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

  echo "Getkey1 value:".$val."<br/>";

 

  //replace data

 $mem->replace('key1','this is replace value',0,60);

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

  echo "Getkey1 value:".$val."<br/>";

 

  //save datagroup

  $arr =array('aa','bb','cc');

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

  echo "Getkey1 value:".$val."<br/>";

 

  //replace data

 $mem->replace('key1','this is replace value',0,60);

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

  echo "Getkey1 value:".$val."<br/>";

 

  //save datagroup

  $arr =array('aa','bb','cc');

  $mem->set('key2',$arr,0,60);

  $val2 =$mem->get('key2');

  echo "Getkey2 value:";

 print_r($val2);

  echo"<br/>";

 

  //delete data

 $mem->delete('key1');

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

  echo "getkey1 value:".$val."<br/>";

 

   //closeconnetions

 $mem->close();

  ?>

 

 

 

驗證:

php+memcached配置


現在就成功了。

 

 

 

 

memcached查看所有key方法:

 php+memcached配置


 


向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

呼伦贝尔市| 泾川县| 屏山县| 太保市| 贵德县| 祁东县| 呼伦贝尔市| 博野县| 靖西县| 东乡族自治县| 彭州市| 铁岭市| 万宁市| 西畴县| 梨树县| 姜堰市| 贺兰县| 搜索| 遵化市| 肇源县| 普兰店市| 兴仁县| 屏山县| 诏安县| 三明市| 永和县| 麟游县| 琼海市| 兴城市| 广安市| 光山县| 公主岭市| 哈巴河县| 陆河县| 固阳县| 大冶市| 鹿泉市| 明水县| 沂南县| 荔波县| 富平县|