Hello Gary, https://www.techempower.com/benchmarks/#section=data-r14&hw=ph&test=plaintext <https://www.techempower.com/benchmarks/#section=data-r14&hw=ph&test=plaintext> says Django can serve 88,019 requests per second. That's about 11µs per request (1µs = 1e-6s).
Response times for Django-powered sites are typically in the 50-500ms range (1ms = 1e-3s). The framework overhead is low enough compared to the time spent in the application that it isn't a priority in the development of Django. Ease of use by developers is considered more important. Using the Python language is a good example of this philosophy. Python is easier for developers than many other languages but harder for computers, thus slower to execute. We're still trying to write efficient code. I believe Sergey Fedoseev performed a series of performance optimizations in Django 2.0. But we aren't optimizing for microbenchmarks. Best regards, -- Aymeric. > On 16 Dec 2017, at 07:34, Gary <[email protected]> wrote: > > > Hi all, > > Why Django has low benchmark? > https://www.techempower.com/benchmarks/ > <https://www.techempower.com/benchmarks/> > > Pls share your views. > -- > You received this message because you are subscribed to the Google Groups > "Django developers (Contributions to Django itself)" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected] > <mailto:[email protected]>. > To post to this group, send email to [email protected] > <mailto:[email protected]>. > Visit this group at https://groups.google.com/group/django-developers > <https://groups.google.com/group/django-developers>. > To view this discussion on the web visit > https://groups.google.com/d/msgid/django-developers/de61fafa-362a-4d4d-b98d-071f779ab94d%40googlegroups.com > > <https://groups.google.com/d/msgid/django-developers/de61fafa-362a-4d4d-b98d-071f779ab94d%40googlegroups.com?utm_medium=email&utm_source=footer>. > For more options, visit https://groups.google.com/d/optout > <https://groups.google.com/d/optout>. -- You received this message because you are subscribed to the Google Groups "Django developers (Contributions to Django itself)" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/django-developers. To view this discussion on the web visit https://groups.google.com/d/msgid/django-developers/C431F7FC-EB24-4D7C-81A0-13D083D1F6D7%40polytechnique.org. For more options, visit https://groups.google.com/d/optout.
