It is 3pm in the afternoon and I was doing my usual task writing some code. I accidentally came across an interesting code that actually saves your processing power when implemented. Let me show you my findings.
I’m using PHP by the way to code a project that handles several processes at a time. I stumbled on this funny situation where you have to code a “sleep” function that runs a pause in an execution momentarily and then resumes. Putting this in real life experience, you have to take a break some times even if you got a ton of work at least get a minute or two to get yourself together then start working again.
Ok now here’s the scenario, I put a sleep method and this is what happens...
the code:
what's happening:
Since I put a sleep method, the CPU is quite calm (at least for me)
If you remove the sleep method this is what happens...
the code:
what's happening:
When i removed the sleep method the CPU's processing became quite hectic and that's because it is doing tasks continuously.
So, resting doesn’t only apply in real life but also our machines can benefit from it! Keep in mind that sleep… is also important.