Created
May 8, 2013 18:23
-
-
Save anthonywu/5542444 to your computer and use it in GitHub Desktop.
Quick install memcached on Mac OS X
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# install via Homebrew | |
brew install memcached | |
# optional: make memcached start along with the system | |
ln -sfv /usr/local/opt/memcached/*.plist ~/Library/LaunchAgents | |
# load memcached now for immediate use | |
launchctl load ~/Library/LaunchAgents/homebrew.mxcl.memcached.plist | |
# check the process that just launched | |
ps -ef | grep memcached |
Memcached listens on port 11211 by default, to change it, use the -p option.
memcached -p 8000
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Which is the endpoint of memcached please? I do not find it