Skip to content

Instantly share code, notes, and snippets.

@dlaub3
Created July 29, 2018 17:32
Show Gist options
  • Save dlaub3/4db299c5d40c64dfe395c3017d7e0ee2 to your computer and use it in GitHub Desktop.
Save dlaub3/4db299c5d40c64dfe395c3017d7e0ee2 to your computer and use it in GitHub Desktop.
memcached

Memcached

ps -aux | grep -i memcached
/etc/init.d/memcached restart
ps -aux | grep -i memcached
telnet localhost 11211
stats
	
get key
set key
add key
delete key

flush_all 10
quit

Supervisord config

[program:memcached]
command=/usr/bin/memcached -m 64 -p 11211 -u memcache -l 127.0.0.1 -DFOREGROUND
autostart = true
autorestart = true
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment