時(shí)間:2015-06-28 00:00:00 來(lái)源:IT貓撲網(wǎng) 作者:網(wǎng)管聯(lián)盟 我要評(píng)論(0)
1.一種
telnet localhost 200001 #登陸
stats?? #查看狀態(tài)
flush_all?? #清理
quit?? #退出
2.又學(xué)到一個(gè):
echo 'flush_all' | nc localhost 200001
3.
1、數(shù)據(jù)存儲(chǔ)(假設(shè)key為test,value為12345)
printf "set test 0 0 5\r\n12345\r\n" | nc 127.0.0.1 200001
STORED
2、數(shù)據(jù)取回(假設(shè)key為test)
printf "get test\r\n" | nc 127.0.0.1 200001
VALUE test 0 5
12345
END
3、數(shù)值增加1(假設(shè)key為test,并且value為正整數(shù))
printf "incr test 1\r\n" | nc 127.0.0.1 200001
12346
4、數(shù)值減少3(假設(shè)key為test,并且value為正整數(shù))
printf "decr test 3\r\n" | nc 127.0.0.1 200001
12343
5、數(shù)據(jù)刪除(假設(shè)key為test)
printf "delete test\r\n" | nc 127.0.0.1 11211
DELETED
6、查看Memcached狀態(tài)
printf "stats\r\n" | nc 127.0.0.1 200001
STAT pid 3025
STAT uptime 4120500
STAT time 1228021767
STAT version 1.2.6
STAT pointer_size 32
STAT rusage_user 433.463103
STAT rusage_system 1224.515845
STAT curr_items 1132460
STAT total_items 8980260
STAT bytes 1895325386
STAT curr_connections 252
STAT total_connections 547850
STAT connection_structures 1189
STAT cmd_get 13619685
STAT cmd_set 8980260
STAT get_hits 6851607
STAT get_misses 6768078
STAT evictions 0
STAT bytes_read 160396238246
STAT bytes_written 260080686529
STAT limit_maxbytes 2147483648
STAT threads 1
END
7、模擬top命令,查看Memcached狀態(tài):
printf "stats\r\n" | nc 127.0.0.1 200001
或者
watch "echo stats | nc 127.0.0.1 200001"
關(guān)鍵詞標(biāo)簽:memcached
相關(guān)閱讀
熱門文章 安裝紅帽子RedHat Linux9.0操作系統(tǒng)教程 Tomcat9.0如何安裝_Tomcat9.0環(huán)境變量配置方法 多種操作系統(tǒng)NTP客戶端配置 Linux操作系統(tǒng)修改IP
人氣排行 Linux下獲取CPUID、硬盤序列號(hào)與MAC地址 dmidecode命令查看內(nèi)存型號(hào) linux tc實(shí)現(xiàn)ip流量限制 安裝紅帽子RedHat Linux9.0操作系統(tǒng)教程 linux下解壓rar文件 lcx.exe、nc.exe、sc.exe入侵中的使用方法 Ubuntu linux 關(guān)機(jī)、重啟、注銷 命令 查看linux服務(wù)器硬盤IO讀寫負(fù)載