.\" -*- mode: troff; coding: utf-8 -*- .\" Automatically generated by Pod::Man 5.01 (Pod::Simple 3.43) .\" .\" Standard preamble: .\" ======================================================================== .de Sp \" Vertical space (when we can't use .PP) .if t .sp .5v .if n .sp .. .de Vb \" Begin verbatim text .ft CW .nf .ne \\$1 .. .de Ve \" End verbatim text .ft R .fi .. .\" \*(C` and \*(C' are quotes in nroff, nothing in troff, for use with C<>. .ie n \{\ . ds C` "" . ds C' "" 'br\} .el\{\ . ds C` . ds C' 'br\} .\" .\" Escape single quotes in literal strings from groff's Unicode transform. .ie \n(.g .ds Aq \(aq .el .ds Aq ' .\" .\" If the F register is >0, we'll generate index entries on stderr for .\" titles (.TH), headers (.SH), subsections (.SS), items (.Ip), and index .\" entries marked with X<> in POD. Of course, you'll have to process the .\" output yourself in some meaningful fashion. .\" .\" Avoid warning from groff about undefined register 'F'. .de IX .. .nr rF 0 .if \n(.g .if rF .nr rF 1 .if (\n(rF:(\n(.g==0)) \{\ . if \nF \{\ . de IX . tm Index:\\$1\t\\n%\t"\\$2" .. . if !\nF==2 \{\ . nr % 0 . nr F 2 . \} . \} .\} .rr rF .\" ======================================================================== .\" .IX Title "Plack::Loader::Delayed 3pm" .TH Plack::Loader::Delayed 3pm 2024-01-20 "perl v5.38.2" "User Contributed Perl Documentation" .\" For nroff, turn off justification. Always turn off hyphenation; it makes .\" way too many mistakes in technical documents. .if n .ad l .nh .SH NAME Plack::Loader::Delayed \- Delay the loading of .psgi until the first run .SH SYNOPSIS .IX Header "SYNOPSIS" .Vb 1 \& plackup \-s Starlet \-L Delayed myapp.psgi .Ve .SH DESCRIPTION .IX Header "DESCRIPTION" This loader delays the compilation of specified PSGI application until the first request time. This prevents bad things from happening with preforking web servers like Starlet, when your application manipulates resources such as sockets or database connections in the master startup process and then shared by children. .PP You can combine this loader with \f(CW\*(C`\-M\*(C'\fR command line option, like: .PP .Vb 1 \& plackup \-s Starlet \-MCatalyst \-L Delayed myapp.psgi .Ve .PP loads the module Catalyst in the master process for the better process management with copy-on-write, however the application \f(CW\*(C`myapp.psgi\*(C'\fR is loaded per children. .PP Starman since version 0.2000 loads this loader by default unless you specify the command line option \f(CW\*(C`\-\-preload\-app\*(C'\fR for the starman executable. .SH DEVELOPERS .IX Header "DEVELOPERS" Web server developers can make use of \f(CW\*(C`psgi_app_builder\*(C'\fR attribute callback set in Plack::Handler, to load the application earlier than the first request time. .SH AUTHOR .IX Header "AUTHOR" Tatsuhiko Miyagawa .SH "SEE ALSO" .IX Header "SEE ALSO" plackup