If i devlop a chat application using django will it have some performance problem?
Can i do server push in django?
I want to have PM and room discussions as well.
Often I find myself wanting to get the first object from a queryset in Django, or return None if there aren't any. There are lots of ways to do this which all work. But I'm wondering which is the most …
In Django, given that I have a QuerySet that I am going to iterate over and print the results of, what is the best option for counting the objects? len(qs) or qs.count()?
(Also given that counting the objects …
My Django application is insanely slow, I want to figure out what is taking time :
I tried Django-debug-toolbar but was unable to find a panel that can give me the break-up of the load time.
My requirements:
A stack-trace type …