给大家带来使用shell下令操纵Memcached
如果您觉得本篇CentOSLinux教程讲得好,请记得点击右边漂浮的分享程序,把好文章分享给你的小伙伴们!数据存储(假定key为test,value为12345)printf"settest005
12345
"|nc127.0.0.112000
STORED
数据取回(假定key为test)
printf"gettest
"|nc127.0.0.112000
VALUEtest05
12345
END
数值增添1(假定key为test,而且value为正整数)
printf"incrtest1
"|nc127.0.0.112000
12346
数值削减3(假定key为test,而且value为正整数)
printf"decrtest3
"|nc127.0.0.112000
12343
数据删除(假定key为test)
printf"deletetest
"|nc127.0.0.112000
DELETED
检察Memcached形态
printf"stats
"|nc127.0.0.112000
STATpid3025
STATuptime4120500
STATtime1228021767
STATversion1.2.6
STATpointer_size32
STATrusage_user433.463103
STATrusage_system1224.515845
STATcurr_items1132460
STATtotal_items8980260
STATbytes1895325386
STATcurr_connections252
STATtotal_connections547850
STATconnection_structures1189
STATcmd_get13619685
STATcmd_set8980260
STATget_hits6851607
STATget_misses6768078
STATevictions0
STATbytes_read160396238246
STATbytes_written260080686529
STATlimit_maxbytes2147483648
STATthreads1
END
摹拟top下令,检察Memcached形态:
watch"printfstats
|nc127.0.0.112000"
大概
watch"echostats|nc127.0.0.112000"
欢迎大家来到仓酷云论坛!
给大家带来使用shell下令操纵Memcached
为什么要学Linux呢?每个人都有不同的看法,下面我说说自己的感想吧。? 熟悉并掌握安装Linux,安装是学习的前提。目前较常见的安装方法有二种: 我学习Linux的心得体会 ,希望对大家的学习有所帮助,由于水平有限,本文难免有所欠缺,望请指正。 选择一些适于初学者的Linux社区。 熟悉操作是日常学习Linux中的三大法宝。以下是作者学习Linux的一些个人经验,供参考: 以前觉得Linux就跟dos一样,全是用命令窗口,相对于窗口界面来说多麻烦呀。 安装一个新的软件时先看README,再看INSTALL然后看FAQ,最后才动手安装,这样遇到问题就知道为什么。如果Linux说明文档不看,结果出了问题再去论坛来找答案反而浪费时间。
页:
[1]