利用shell命令操作Memcached,shell命令memcached


数据存储(假设key为test,value为12345)

printf"settest005rn12345rn"|nc127.0.0.112000

STORED

数据取回(假设key为test)

printf"gettestrn"|nc127.0.0.112000

VALUE test 0 5

12345

END

数值增加1(假设key为test,并且value为正整数)

printf"incrtest1rn"|nc127.0.0.112000

12346

数值减少3(假设key为test,并且value为正整数)

printf"decrtest3rn"|nc127.0.0.112000

12343

数据删除(假设key为test)

printf"deletetestrn"|nc127.0.0.112000

DELETED

查看Memcached状态

printf"statsrn"|nc127.0.0.112000

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

模拟top命令,查看Memcached状态:

watch"printf'statsrn'|nc127.0.0.112000"

或者

watch"echostats|nc127.0.0.112000"

相关内容

    暂无相关文章