|
|
|
|
|
by danibx
4751 days ago
|
|
I read somewhere that Flask was born as an Aprils first joke. So I ask. How safe is it to use in a real project? Is it a serious project today? Would you recommend Flask to someone who has never done any server side programming? |
|
We (mailgun.com) use it in production, our deployment handles thousands of requests/sec, we have not seen any flask-related issues so far in 2+ years.
You can use pool of flask + twisted powered services behind nginxes:
Nginx ---upstream pool--> twisted.wsgi + thread pool + flask app
Something like that:
https://gist.github.com/klizhentas/5775158