Skip to content

Handle unbuffered requests

Compare
Choose a tag to compare
@fwkz fwkz released this 19 Nov 20:03
· 23 commits to master since this release
657c706
  • GunicornBasedHttpService
    Flask application served using gunicorn in separate process using async workers (threads in this case). Application served by this base class suppose to handle unbuffered requests, nginx in this case is no option hence async workers.
  • WSGIRefBasedHttpService
    Flask application served using wsgiref in separate thread. We can leverage shared state between main thread and thread handling wsgiref server and dynamically attach Mock object as view functions.
  • adhoc ssl support
  • random port discovery