Perl ウェブ開発の中世〜CGI と Plack の間〜

66
Perl CGI Plack OGATA Tetsuji (@xtetsuji) 2017/03/04 YAPC::Kansai 2017 OSAKA https://flic.kr/p/K9v8rD

Transcript of Perl ウェブ開発の中世〜CGI と Plack の間〜

Page 1: Perl ウェブ開発の中世〜CGI と Plack の間〜

Perl CGI Plack

OGATA Tetsuji (@xtetsuji) 2017/03/04 YAPC::Kansai 2017 OSAKA

https://flic.kr/p/K9v8rD

Page 2: Perl ウェブ開発の中世〜CGI と Plack の間〜

• OGATA Tetsuji (@xtetsuji)

• http://post.tetsuji.jp/

• Gaiax R&D INFRA

Page 3: Perl ウェブ開発の中世〜CGI と Plack の間〜

https://flic.kr/p/bhrKfp

Page 4: Perl ウェブ開発の中世〜CGI と Plack の間〜

• 🔈CGI Plack Perl

• 🔈

• 🔇

• 🔇

Page 5: Perl ウェブ開発の中世〜CGI と Plack の間〜

CGI

https://flic.kr/p/aWg7jz

Page 6: Perl ウェブ開発の中世〜CGI と Plack の間〜

• 1991 HTTP HTML

• 1993 NCSA HTTPd CGI

• 1995 Windows 95

• 1999 NTT i-mode

Photo:

Page 7: Perl ウェブ開発の中世〜CGI と Plack の間〜

• 1990 CGI

• CGI

Page 8: Perl ウェブ開発の中世〜CGI と Plack の間〜

URL CGI

CGI

Page 9: Perl ウェブ開発の中世〜CGI と Plack の間〜

URL CGI

CGI

Page 10: Perl ウェブ開発の中世〜CGI と Plack の間〜

• CGI

• 1

• Perl CGI

Page 11: Perl ウェブ開発の中世〜CGI と Plack の間〜

• 1

Page 12: Perl ウェブ開発の中世〜CGI と Plack の間〜

CGI Perl

CGI

• C

• 20 21 CGI Perl

Page 13: Perl ウェブ開発の中世〜CGI と Plack の間〜

CGI Perl• 1990 ISP(Internet Service Provider)

ISP

• Perl

Page 14: Perl ウェブ開発の中世〜CGI と Plack の間〜

CGI Perl

• ISP Perl CGI

• CGI Perl

• IT CGI Perl

Page 15: Perl ウェブ開発の中世〜CGI と Plack の間〜

CGI Perl 2000 2008

https://flic.kr/p/5kwk72

Page 16: Perl ウェブ開発の中世〜CGI と Plack の間〜

• CGI

• CGI

• 2000 2003

https://flic.kr/p/9xG4TJ

Page 17: Perl ウェブ開発の中世〜CGI と Plack の間〜

Apache mod_perl (1997 )

• mod_perl Apache Perl Apache

• Apache C

• Apache Perl CGI Perl

Page 18: Perl ウェブ開発の中世〜CGI と Plack の間〜

Apache mod_perl (1997 )

• 2000

• mod_perl Web (by miyagawa -san @ 2001 YARPC 19101 LT)

• mod_perl C10K Problem (by takesako -san @ 2004 Linux )

Page 19: Perl ウェブ開発の中世〜CGI と Plack の間〜

FastCGI (mid-1990s )

• CGI FastCGI CGI

• FastCGI

Page 20: Perl ウェブ開発の中世〜CGI と Plack の間〜

FastCGI (mid-1990s )

• Apache mod_fcgi FastCGI

• Perl FCGI

• Apache

Page 21: Perl ウェブ開発の中世〜CGI と Plack の間〜

SpeedyCGI (1999 )• FastCGI

Perl SpeedyCGI

• CGI Perl Common

• CGI shebang #!/usr/bin/perl #!/usr/bin/speedy

Page 22: Perl ウェブ開発の中世〜CGI と Plack の間〜

CGI mod_perl FastCGI SpeedyCGI

Apache

Apache

RFC

Apache APIFastCGI

Specification

Perl ※

Perl

1991 1996 1990 1999

Page 23: Perl ウェブ開発の中世〜CGI と Plack の間〜

Perl CGI• 2007 2008 YAPC::Asia Tokyo

mod_perl FastCGI

• Catalyst WAF (Web Application Framework)

mod_perl FastCGI

• PSGI / Plack (2009)

Page 24: Perl ウェブ開発の中世〜CGI と Plack の間〜

mod_perl and FastCGI

• CGI Plack 2

• WAF FastCGI

• Perl Apache mod_perl

• FastCGI 2017mod_perl

Page 25: Perl ウェブ開発の中世〜CGI と Plack の間〜

mod_perl and FastCGI

• FastCGI

• mod_perl

• mod_perl Apache (prefork)

• FastCGI mod_perl

Page 26: Perl ウェブ開発の中世〜CGI と Plack の間〜

mod_perl

• Apache lighttpd Nginx

• Apache 1 2 Apache API mod_perl

• mod_perl

Page 27: Perl ウェブ開発の中世〜CGI と Plack の間〜

Perl

• Java Servlet e.g. Tomcat

• IIS/ASP

• mod_perl e.g. mod_ruby mod_python

• PHP e.g. mod_php php-fpm(FastCGI)

• Ruby on Rails Passenger Unicorn…

Page 28: Perl ウェブ開発の中世〜CGI と Plack の間〜

https://flic.kr/p/bVwF8R

Page 29: Perl ウェブ開発の中世〜CGI と Plack の間〜

Page 30: Perl ウェブ開発の中世〜CGI と Plack の間〜

prefork

I/O

Perl Apache (prefork)Starlet, Starman

NginxTwiggy

Page 31: Perl ウェブ開発の中世〜CGI と Plack の間〜

• Apache MPM (Multi Processing Module) prefork

(event) (worker)

• Perl prefork

Page 32: Perl ウェブ開発の中世〜CGI と Plack の間〜

prefork

$ ps auxwf

Page 33: Perl ウェブ開発の中世〜CGI と Plack の間〜

• fork =

• root

• prefork = fork

Page 34: Perl ウェブ開発の中世〜CGI と Plack の間〜

prefork

Page 35: Perl ウェブ開発の中世〜CGI と Plack の間〜

prefork

Parent

Page 36: Perl ウェブ開発の中世〜CGI と Plack の間〜

prefork

Parent

Child Child Child Child

Process fork

Page 37: Perl ウェブ開発の中世〜CGI と Plack の間〜

prefork

Parent

Child Child Child Child

Process fork

HTTP

Page 38: Perl ウェブ開発の中世〜CGI と Plack の間〜

event

Page 39: Perl ウェブ開発の中世〜CGI と Plack の間〜

event

Master

Page 40: Perl ウェブ開発の中世〜CGI と Plack の間〜

event

Master

Worker

Page 41: Perl ウェブ開発の中世〜CGI と Plack の間〜

event

Master

Worker

Worker

HTTP

Page 42: Perl ウェブ開発の中世〜CGI と Plack の間〜

PSGI / Plack 2009

https://flic.kr/p/726NSK

Page 43: Perl ウェブ開発の中世〜CGI と Plack の間〜

• Catalyst WAF (Web Application Framework)

mod_perl FastCGI

Page 44: Perl ウェブ開発の中世〜CGI と Plack の間〜

• CGI mod_perl FastCGI SpeedyCGI WAF

• WAF WAF

• Python WSGI (Web Server Gateway Interface) Ruby Rack

Page 45: Perl ウェブ開発の中世〜CGI と Plack の間〜

• CGI FastCGI

Page 46: Perl ウェブ開発の中世〜CGI と Plack の間〜

PSGI Plack

• CGI WSGI

• WSGI PSGI (Perl Server Gateway Inteface) Plack

Page 47: Perl ウェブ開発の中世〜CGI と Plack の間〜

https://flic.kr/p/7n8y6p

Page 48: Perl ウェブ開発の中世〜CGI と Plack の間〜

https://flic.kr/p/7n8y6p

Page 49: Perl ウェブ開発の中世〜CGI と Plack の間〜

https://flic.kr/p/7n8y6p

Page 50: Perl ウェブ開発の中世〜CGI と Plack の間〜

https://flic.kr/p/7n8y6p

Page 51: Perl ウェブ開発の中世〜CGI と Plack の間〜

https://flic.kr/p/7n8y6p

Page 52: Perl ウェブ開発の中世〜CGI と Plack の間〜

https://flic.kr/p/7n8y6p

Page 53: Perl ウェブ開発の中世〜CGI と Plack の間〜

PSGI

• CGI WAF PSGI

• Perl

Page 54: Perl ウェブ開発の中世〜CGI と Plack の間〜

Plack

• PSGI

• PSGI PSGI

• PSGI Plack

Page 55: Perl ウェブ開発の中世〜CGI と Plack の間〜

Plack

• Plack::Handler::

• PSGI Plack::Middleware::

Page 56: Perl ウェブ開発の中世〜CGI と Plack の間〜

PSGI / Plack WAF

Page 57: Perl ウェブ開発の中世〜CGI と Plack の間〜

http://www.kirin.co.jp/company/news/2016/0727_05.html

Page 58: Perl ウェブ開発の中世〜CGI と Plack の間〜

🍻

http://www.kirin.co.jp/company/news/2016/0727_05.html

Page 59: Perl ウェブ開発の中世〜CGI と Plack の間〜

2017

https://flic.kr/p/mzF5vS

Page 60: Perl ウェブ開発の中世〜CGI と Plack の間〜

• Perl PSGI WAF Plack

• WAF Mojolicious

Amon2

Page 61: Perl ウェブ開発の中世〜CGI と Plack の間〜

• Plack::Handler::

Page 62: Perl ウェブ開発の中世〜CGI と Plack の間〜

• WAF PSGI …

Page 63: Perl ウェブ開発の中世〜CGI と Plack の間〜

Page 64: Perl ウェブ開発の中世〜CGI と Plack の間〜

• mod_perl

https://flic.kr/p/5i9taP

Page 65: Perl ウェブ開発の中世〜CGI と Plack の間〜

https://flic.kr/p/5i9taP

Page 66: Perl ウェブ開発の中世〜CGI と Plack の間〜