天天看點

linux memcached相關指令

telnet localhost 200001 #登陸

  stats #檢視狀态

  flush_all #清理

  quit #退出

  echo 'flush_all' | nc localhost 200001

  1、資料存儲(假設key為test,value為12345)

  printf "set test 0 0 5\r\n12345\r\n" | nc 127.0.0.1 200001

  STORED

  2、資料取回(假設key為test)

  printf "get test\r\n" | nc 127.0.0.1 200001

  VALUE test 0 5

  12345

  END

  3、數值增加1(假設key為test,并且value為正整數)

  printf "incr test 1\r\n" | nc 127.0.0.1 200001

  12346

  4、數值減少3(假設key為test,并且value為正整數)

  printf "decr test 3\r\n" | nc 127.0.0.1 200001

  12343

  5、資料删除(假設key為test)

  printf "delete test\r\n" | nc 127.0.0.1 11211

  DELETED

  6、檢視Memcached狀态

  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狀态:

  printf "stats\r\n" | nc 127.0.0.1 200001

  或者

  watch "echo stats | nc 127.0.0.1 200001"