Suchergebnisse mit Tag „profiling“

TOP

Think looping

Software Developers need to think straight forward: Line 2 is executed after line 1, never before. But straight forward code isn't always good.
Weiterlesen
TOP

Speed up your script using profiling

What is profiling?

Each script should care of resources (time, memory or CPU time) being used, but some don't. Profiling is a detailed analysis of your script's behavior while it's running.

A profiler notices every processed line, it's callers and called functions and time required to process it.

Weiterlesen