Why should I use WSGI?

后端 未结 6 1600
小蘑菇
小蘑菇 2021-02-05 07:34

Been using mod_python for a while, I read more and more articles about how good WSGI is, without really understanding why.

So why should I switch to it? What are the ben

6条回答
  •  旧时难觅i
    2021-02-05 07:52

    Most Python frameworks implement wsgi. There is mod_wsgi for apache and a SCGI/FastCGI/AJP module + Flup for the others. That way you can have all the advantages of a separate Python process, without being tied to one webserver.

提交回复
热议问题