Django Performance, Slow Ttfb Without Any Queries
I have a simple view which renders an HTML template. No variables whatsoever and no database queries. However, my TTFB is still 665ms. Here is code for the view: def test_page(requ
Solution 1:
The problem was with an HTML minify middleware.
Here is where the issue is discussed: https://github.com/cobrateam/django-htmlmin/issues/53
Post a Comment for "Django Performance, Slow Ttfb Without Any Queries"