Life without names.
The method of preparing quick installation USB Flash to be installed FreeBSD Netcat - reminder.
Nov 29

Status:

1
2
3
4
echo stats | nc 127.0.0.1 11211
echo stats items | nc 127.0.0.1 11211
echo stats sizes | nc 127.0.0.1 11211
echo stats slabs | nc 127.0.0.1 11211

1
telnet 127.0.0.1 11211
1
stats
1
quit

Like top:

1
watch "echo stats | nc 127.0.0.1 11211"

Use php:

1
watch 'php -r '"'"'$m=new Memcache;$m->connect("127.0.0.1", 11211);print_r($m->getstats());'"'"

Share/Save

Leave a Reply