• 흐림동두천 15.1℃
  • 흐림강릉 15.7℃
  • 흐림서울 16.5℃
  • 흐림대전 19.4℃
  • 흐림대구 19.1℃
  • 흐림울산 19.5℃
  • 흐림광주 22.1℃
  • 흐림부산 21.7℃
  • 구름많음고창 23.2℃
  • 맑음제주 26.3℃
  • 흐림강화 15.4℃
  • 흐림보은 18.0℃
  • 구름많음금산 19.7℃
  • 흐림강진군 23.0℃
  • 흐림경주시 18.6℃
  • 흐림거제 21.8℃
기상청 제공

memcached 관련 명령어

# memcached 관련 명령어

echo stats | nc 123.123.123.123 11211

echo stats settings | nc 123.123.123.123 11211

echo stats slabs | nc 123.123.123.123 11211

echo stats items | nc 123.123.123.123 11211


# memcached 기타

telnet 123.123.123.123 11211

set TestKey 0 10000 2
hi
STORED
get TestKey
VALUE TestKey 0 2
hi
END
quit
Connection closed by foreign host.