This might be a bit ignorant question, but why everyone is saying [1,2,...] that Flask and/or Bottle HTTP servers are not to be used in production?
Seems like things have changed a lot, for example bottle+ssl+gevent
sounds like a viable option for production (to me) which handles the main concerns:
- Security (ssl)
- Multiple/parallel requests (gevent)
Am I missing something, like a major security risk? or a performance issue? I mean how much faster might nginx
or apache2
be when the major bottleneck is IO?
(Side-question: what you suggest for micro-service deployment with minimal system requirements?)
Cheers