in reply to Perl concurrent access

Most web servers start normal CGI scripts in parallel - if you have two requests roughly at the same time, the scripts that answer theses requests also run at the same time.

Which means that each script only gets half of the available CPU time, and thus takes twice as long to finish.

Perl 6 - links to (nearly) everything that is Perl 6.