您好,登錄后才能下訂單哦!
這篇文章主要介紹“php中Memcached的 概念是什么”的相關(guān)知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“php中Memcached的 概念是什么”文章能幫助大家解決問題。
安裝方式:
官網(wǎng)下載:memcached-1.1.12.tar.gz
libevent下載:libevent-1.1a.tar.gz
編譯安裝:
# tar -xzf libevent-1.1a.tar.gz # cd libevent-1.1a# ./configure --prefix=/usr# make# make install# cd .. # tar -xzf memcached-1.1.12.tar.gz# cd memcached-1.1.12 # ./configure --prefix=/usr# make# make install
運行程序:
/usr/bin/memcached -d -m 128 -l 192.168.1.1 -p 11211 -u httpd
memcached應(yīng)用示例:
<?php require_once('memcached-client.php'); $options = array( 'servers' => array('192.168.1.1:11211') 'debug' => true, 'compress_threshold' => 10240, 'persistant' => false ); ?>
關(guān)于“php中Memcached的 概念是什么”的內(nèi)容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業(yè)相關(guān)的知識,可以關(guān)注億速云行業(yè)資訊頻道,小編每天都會為大家更新不同的知識點。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實,將立刻刪除涉嫌侵權(quán)內(nèi)容。