RadiantHex
RadiantHex

Reputation: 25557

WSGI server that processes request despite client disconnecting? - Python

I need to find a stable wsgi server that won't stop processing requests when client disconnect.

I'm not sure if uWSGI or gunicorn would fit this criteria.


Forgot to add this:

I am also trying to return a response before the request gets processed.


Any ideas?

Upvotes: 0

Views: 855

Answers (1)

nosklo
nosklo

Reputation: 222852

almost all wsgi servers do that. I'm not sure what you mean.

  • gunicorn
  • paste
  • cherrypy
  • twisted.web
  • apache with mod_wsgi
  • werkzeug
  • ...

Upvotes: 1

Related Questions