Well, that is not how memcached works, it's not replicated. If you have a cluster of memcached servers, and you store an item, it will be stored on one of the servers chosen semi-randomly, not all of them or some of them. However, the item is still available to all machines connected to the cluster, because each will know on which memcached server a specific item is located.
Also, I'm really curious as to why you have a replicated mysql slave on each webserver? It sounds like it would just cause a lot more problems than it solves? /Henrik On Tue, Jun 30, 2009 at 20:53, Tzury Bar Yochay <[email protected]>wrote: > > I want to make sure that whatever I cache on one machine would be > cached on the other as well. > >
