I am running Django on localhost using the Django development server. I have a view that just returns HttpResponse("hello world").
def simpleview(request):
return HttpResponse("hello world")
I make a GET request with jquery to that view.
Looking in the browser, it shows that this takes 1.3 seconds to return which is very slow.
Is there any way to check what is going on? I am trying to use this for autocomplete, and a waiting time of 1.3 seconds for a virtually empty response is unusable.