I'm looking for a complete Memcached tutorial. Anybody got a clue?
|
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.
|
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://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... |
|||
|
|
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 |
||||
|
|
|
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>. |
||||
|
|
|
You can get useful telnet commands list here: http://www.journaldev.com/16/memcached-telnet-commands-with-example |
|||
|
|