【激速】mod_perl Spe ..
[
2ch
|
▼Menu
]
■コピペモード
□
スレを通常表示
□
オプションモード
□このスレッドのURL
■項目テキスト
367:355 06/07/01 12:03:41 ソース hello.html <HTML> Hello, world! </HTML> hello.pl #!/usr/bin/perl print "Content-type: text/html\n\n"; print "<HTML>\n"; print "Hello, world!\n"; print "</HTML>"; hello.c #include <stdio.h> void main(void) { printf("Content-type: text/html\n\n"); printf("<HTML>\n"); printf("Hello, world!\n"); printf("</HTML>"); } 368:355 06/07/01 12:05:28 fast_hello.pl #!/usr/bin/perl use FCGI; while (FCGI::accept >= 0) { print "Content-type: text/html\n\n"; print "<HTML>\n"; print "Hello, world!\n"; print "</HTML>"; } fast_hello.c #include "fcgi_stdio.h" #include <stdio.h> void main(void) { while (FCGI_Accept() >= 0) { printf("Content-type: text/html\n\n"); printf("<HTML>\n"); printf("Hello, world!\n"); printf("</HTML>"); } }
次ページ
最新レス表示
スレッドの検索
類似スレ一覧
話題のニュース
おまかせリスト
▼オプションを表示
レスジャンプ
mixiチェック!
Twitterに投稿
オプション
しおりを挟む
スレッドに書込
スレッドの一覧
暇つぶし2ch
5394日前に更新/249 KB
担当:undef