|
|
|
|
|
by SideburnsOfDoom
3606 days ago
|
|
Put it this way: Cost of a branch misprediction is 10s of cpu cycles. (1) Measured in gigahertz (10^9 cycles per second). Time to turn around a web request is, if you're very lucky and have done the work, mainly about getting a value from an in-memory cache at multiple milliseconds (2). That's 1 / (10^3) seconds. If you're not lucky, 10s or 100s of milliseconds to generate the response. It seems that the second duration is best case around 10^6 times longer. I would not sweat the first one. 1) http://stackoverflow.com/a/289860/5599
2) http://synsem.com/MCD_Redis_EMS/ |
|