Tag Archives: profiling

Django profiling again

The process of profiling takes the identification of bottlenecks (parts of the code that run slowly) followed by their more or less successful removal. As described in the previous post about profiling you can get helped by using a profile middleware. The solution is all fine, but the problem remains how to identify a bottleneck.
You [...]

Posted in Projects | Also tagged , | Leave a comment

Profiling Django Applications

I don’t really like to put print statements in my code in order to do debugging. Actually the only thing I hate more is putting get-time-like functions before and after certain part of code. And then subtracting after with before and output the result. Wouldn’t it be nice to have a tool like gprof for [...]

Posted in Projects | Also tagged , , , | 2 Comments