1. 메모리 사용량 체크
# ps -u root -o rss,command | grep 'memcached -d' | awk '{print $0}{sum+=$1} END {print "\nMemory usage for memcached:", sum/1024, "MB\n"}'
2. stats 확인
# nc localhost 11211
stats
STAT cmd_get 1169958
STAT cmd_set 260621
STAT get_hits 823504
STAT get_missed 346454
※ hitrate : get_hits / cmd_get
'Server-Side > Linux' 카테고리의 다른 글
[CentOS] Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2) (0) | 2010.12.01 |
---|---|
linux mount (0) | 2010.12.01 |
[CentOS]call to undefined function mysql_connect (0) | 2010.10.15 |
[CentOS] how to install memcached in 64bit centos (0) | 2010.10.11 |
[CentOS] php에서 memcache 설치하기 (0) | 2010.10.11 |