エントリーの編集
エントリーの編集は全ユーザーに共通の機能です。
必ずガイドラインを一読の上ご利用ください。
How to serve a WSGI application via CGI
記事へのコメント0件
- 注目コメント
- 新着コメント
このエントリーにコメントしてみましょう。
注目コメント算出アルゴリズムの一部にLINEヤフー株式会社の「建設的コメント順位付けモデルAPI」を使用しています
- バナー広告なし
- ミュート機能あり
- ダークモード搭載
関連記事
How to serve a WSGI application via CGI
March 10 2009CGI has a bad reputation. Its slow performance disqualify it for most demanding task... March 10 2009CGI has a bad reputation. Its slow performance disqualify it for most demanding tasks; nobody would think of serving thousands of pages per seconds via CGI. But when performance doesn’t matter, it can still be useful. CGI is easy to deploy, most HTTP servers fully support it, and writing a minimal script only takes a few lines: print 'Content-type: text/plain' print print 'Hello World

