Skip to content

Instantly share code, notes, and snippets.

View tanguylebarzic's full-sized avatar

Tanguy Le Barzic tanguylebarzic

View GitHub Profile
@al-the-x
al-the-x / notes.md
Created February 7, 2014 19:11
Tips from @rasmus about atomic deployments...

The only way to have atomic (code) deploys:

  • Don't copy files into current document root
  • Let existing requests finish on old code
  • New requests start on new code
  • Avoid clearing your opcode cache
  • Minimal impact on production traffic

Breakdown: