I dont know whether this question makes sense but seriously is flask faster than django. The reason why i am saying this is that i have deployed one intranet application which is built in Django for a top MNC company and second application for a trading MNC company developed in Flask

Although user's are not complaining about the performance issue of django but whenever i go for a quick check of that intranet application i feel its kinda slow and the server environment are same which is being used by Django and Flask

Funningly the Trading application which is been developed under Flask + Werkzeug + SQLAlchemy & Jinja 2 has more users than the django application. So am i missing something ??

Thank you in advance

link|improve this question

50% accept rate
2  
What do you mean by "it feels slow"? – AndiDog Feb 17 '11 at 21:33
Performance wise. Applications which are deployed in Flask are blazingly fast.... – fear_matrix Feb 18 '11 at 4:38
That is not an answer to my question. Do you mean load times? Requests per second? – AndiDog Feb 18 '11 at 7:33
1  
Yes both. Load times and Requests – fear_matrix Feb 18 '11 at 15:04
1  
Give us some numbers so that we know about what difference in performance we're speaking. For example, you can measure raw req/sec performance with Apache Benchmark. – AndiDog Feb 18 '11 at 18:07
show 1 more comment
feedback

closed as not constructive by Daniel DiPaolo, AndiDog, Matt Ball, Alejandro, Graviton Feb 20 '11 at 6:44

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

1 Answer

If you would write the same app with Django and with Flask, it will probably work a little bit faster on Flask. Jinja2 templates (used by Flask) work faster than django templates. Also Flask is a small framework and has less executable code.

However you are comparing a different applications with different implementation details so I doubt that framework choice did any difference here.

Django is fast enough for some big sites.

If you feel that your application does not perform well you need to make profiling and find which parts of application works slow.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.