Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm looking for a complete Memcached tutorial. Anybody got a clue?

share|improve this question
2  
mcondev.wordpress.com/2012/10/10/what-is-memcached, hope this helps – Siddharth Oct 24 '12 at 7:49

closed as not constructive by gnat, von v., duDE, Toon Krijthe, brasofilo May 2 at 5:43

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

4 Answers

up vote 36 down vote accepted

I don't think that the words "complete" and "tutorial" fit well within the same sentence. Any document for something with so many diverse uses like memcached would be a whole book. Tutorials, on the other hand, are supposed to address specific tasks. In any case, I found the following just by using Google a bit:

http://code.google.com/p/memcached/wiki/NewStart

http://www.search-this.com/2007/07/24/an-introduction-to-memcached/

http://www.webdeveloperjuice.com/2010/01/25/10-baby-steps-to-install-memcached-server-and-access-it-with-php/

http://code.google.com/p/memcached/wiki/TutorialCachingStory

What is it that you need? To install Memcached? Use it in your PHP application? Unless you give us an idea of what you want to do with memcached, it cannot get much more specific.

PS: BTW, if you plan on installing something like this on a production system - especially on some outward facing server - you should read, or at least skim, all of the memcached documentation. Otherwise you run an increased risk of making some relatively major mistake like opening your clients' financial information up to the world...

share|improve this answer
Actually, I'm looking for several things: Infos to help take decisions, like: what can I actually do with Memcached, but also technical data in order to use it, and design-patterns like infos on how to use it well... – Traroth Dec 5 '10 at 11:03

I found this article quite useful and straight forward explanation/tutorial on how to use memcached with java. It contains high level explanation of the principals of memcached, comparison to other caching frameworks like EhCache and step by step code example how to run your first memcached app.

Here are the links:

Use Memcached for Java enterprise performance, Part 1: Architecture and setup http://www.javaworld.com/javaworld/jw-04-2012/120418-memcached-for-java-enterprise-performance.html

Use Memcached for Java enterprise performance, Part 2: Database-driven web apps http://www.javaworld.com/javaworld/jw-05-2012/120515-memcached-for-java-enterprise-performance-2.html

share|improve this answer

But essentially a in memory data structure spread across multiple machines. And as data is inserted into the cache, a routing table decides on which machine the data will reside on. And this routing table is also used for lookups.

This data structure can be a tree/hashtable or for that matter even a array. Its for you to decide how you like your cache to work. With memcached it may be a huge hashtree. So its the randomness of the key generated that will ensure equal loading of all the machines.

All the machines kinda form a cluster, addressable by the memcached client library.

Hope it makes basic design clear.

Edit : Adding a link to help understand more basic functionality of memcached <here>.

share|improve this answer

You can get useful telnet commands list here:

http://www.journaldev.com/16/memcached-telnet-commands-with-example

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.