PACELC over CAP
The CAP theorem is the wrong tool for most design conversations. PACELC (which also covers the latency/consistency tradeoff during normal operation, not just during partitions) maps more directly to the decisions I actually make.
When I'm designing a system, I ask "what happens when there's no partition?" because that's 99.9% of the time, and the latency/consistency tradeoff during normal operation usually matters more than the partition behavior. Black Skies uses Redis for hot state (PA/EL), etcd for coordination (PC/EC), and DynamoDB for durable global state (PC/EC with coalescing). The CAP labels don't capture those distinctions.