develop with

Setup Memcached

Setup and configuring memcached for development

How to setup Memcached

Memcached is an in-memory cache solution that can be used to improve lookup speeds against data that is frequently used.

To install on OS X, via brew:

brew install memcached

In order for it to load automatically on OS X, you’ll need to do the following:

ln -sfv /usr/local/opt/memcached/*.plist ~/Library/LaunchAgents
launchctl load ~/Library/LaunchAgents/homebrew.mxcl.memcached.plist

To install on Ubuntu:

sudo apt-get install memcached
/etc/init.d/memcached status

comments powered by Disqus

Want to see a topic covered? create a suggestion

Get more developer references and books in the developwith store.