I am currently working on an existing Django project, which is quite slow (I assume that this is mainly related to AJAX calls). However, to prioritize optimization, I would like to know what the numbers indicated for the HTTP response codes mean.
[03/Dec/2011 22:25:00] "GET /userbase HTTP/1.1" 200 5914 <--This number [03/Dec/2011 22:25:39] "GET /cohorts?weekly=true HTTP/1.1" 200 27985 <--This too [03/Dec/2011 22:26:13] "GET /cohorts?weekly=false HTTP/1.1" 200 11416 <--and this one
Since those that take more time have a larger number, I guess how long it will take to get an answer. But how is this measured? In milliseconds? The refinement will be appreciated.
source share