THIRD RAIL » Memcached based message queues

http://3.rdrail.net/blog/memcached-based-message-queues/ Blog pots shows and explains how to implement simple queue system on top of memcached

High Scalability - High Scalability - Facebook's Memcached Multiget Hole: More machines != More Capacity

http://highscalability.com/blog/2009/10/26/facebooks-memcached-multiget-hole-more-machines-more-capacit.html also see http://dormando.livejournal.com/521163.html Describing some problems with performance/scalability you may have if you partition/shard your data by hash. ( that’s what memcached does.) You may hit the cpu bound limit from the amount of requests that few very popular keys receive. Currently, there is now common way around this (perhaps because very very few sites scale to the point when this becomes an issue )

Yahoo!'s PNUTS Database: Too Hot, Too Cold or Just Right? | High Scalability

http://highscalability.com/yahoo-s-pnuts-database-too-hot-too-cold-or-just-right writeup on yahoo PTUNS (distributed database ). Also, see the original paper if you are interested.

Real World Web: Performance & Scalability

http://www.scribd.com/doc/2569319/Real-World-Web-Performance-Scalability 193 pages of realy good summaries on the topic

Exploring Amazon EC2 for Scale-out Applications

http://www.scribd.com/doc/2569362/Exploring-Amazon-EC2-for-Scaleout-Applications very interesting post from people who have done benchmarking and testing amazon EC2 platform

Venu Anuganti Blog » Notes on scaling heavy concurrent writes in real time /InnoDB

http://venublog.com/2008/04/17/notes-on-scaling-heavy-concurrent-writes-in-real-time/ notes about how to scale innodb writes. to summ it up: shard, use int as PKEY (convert hash to int using base-convert, batch lots of write into one trx. / nothing special

Gearman - system to farm out work to other machines, dispatching function calls to machines that are better suited to do work

http://www.danga.com/gearman/ something like MapReduce in Perl – from Brad!!

Brian "Krow" Aker's Idle Thoughts - The Death of Read Replication

http://krow.livejournal.com/590912.html interesting thoughts and notes about DBs and scalable systems

Friends for Sale Architecture - A 300 Million Page View/Month Facebook RoR App | High Scalability

http://highscalability.com/friends-sale-architecture-300-million-page-view-month-facebook-ror-app

Scaling with memcached » SlideShare

http://www.slideshare.net/acme/scaling-with-memcached nice presentation on memcached