1. Home
  2. What
  3. "architecture"

One Tag, I'll be a cloud.
One Tag, I'll be a cloud.

Speedup Symfony2 on Vagrant boxes — Whitewashing

saved on
about:
Some tips for making Symfony2 faster on Vagrant + VirtualBox

Evolution of SoundCloud's Architecture SoundCloud Backstage

saved on
uri:
https://backstage.soundcloud.com/2012/08/evolution-of-soundclouds-architecture/ This link is now broken.
about:
The evolution of SoundCloud architecture through the times, from a traditional simple stack to a complete evolutive one

Database replication lag | Dries Buytaert

saved on
about:
Consider the following pseudo-code: $nid = node_save($data); $node = node_load($nid); Because node_save() executes a mutator query (an INSERT or UPDATE statement) is has to be executed on the master, so the master can propagate the changes to the slaves. Because node_load() uses a read-only query, it can go to the master or any of the available slaves. Because of the lack of synchronization between master and slaves, there is one obvious caveat: when we execute node_load() the slaves might not have been updated.