memcached筆記

memcached命令率=git_hits/curr_itemsphp

查看memcached狀態
memcached-tool 服務端IP:服務端端口 stats
echo stats |nc 服務端IP 服務端端口
memstat --servers=服務端IP:服務端端口git

建立數據和查看數據
set key2 0 30 2
說明;30是過時時間(若是設置成0,表明永不過時);2是字符長度;0是flags的標記(通常是開發的定義來建立)github

set在沒有對應的key時候就增長,有的就覆蓋
add是增長key,存在的是失敗web

導出和導入(由於memcached是把數據緩存在內存中,在重啓服務或者是重啓機器前作備份)
導出
memcached-tool 服務端IP:服務端端口 dump > xxx緩存

導入
nc 服務端IP 服務端端口 < xxxphp7

php的memcache模塊
wget http://www.apelearn.com/bbs/data/attachment/forum/memcache-2.2.3.tgzide

php7的memcache模塊
wget https://github.com/websupport-sk/pecl-memcache/archive/php7.zip
unzip pecl-memcache-php7.zip
cd pecl-memcache-php7
/usr/local/php/bin/phpize
./configure --with-php-config=/usr/local/php/bin/php-config --enable-memcache
make && make install
memcached筆記memcached

相關文章
相關標籤/搜索