source: main/trunk/greenstone2/perllib/cpan/Mojolicious/Guides/FAQ.pod@ 32205

Last change on this file since 32205 was 32205, checked in by ak19, 6 years ago

First set of commits to do with implementing the new 'paged_html' output option of PDFPlugin that uses using xpdftools' new pdftohtml. So far tested only on Linux (64 bit), but things work there so I'm optimistically committing the changes since they work. 2. Committing the pre-built Linux binaries of XPDFtools for both 32 and 64 bit built by the XPDF group. 2. To use the correct bitness variant of xpdftools, setup.bash now exports the BITNESS env var, consulted by gsConvert.pl. 3. All the perl code changes to do with using xpdf tools' pdftohtml to generate paged_html and feed it in the desired form into GS(3): gsConvert.pl, PDFPlugin.pm and its parent ConvertBinaryPFile.pm have been modified to make it all work. xpdftools' pdftohtml generates a folder containing an html file and a screenshot for each page in a PDF (as well as an index.html linking to each page's html). However, we want a single html file that contains each individual 'page' html's content in a div, and need to do some further HTML style, attribute and structure modifications to massage the xpdftool output to what we want for GS. In order to parse and manipulate the HTML 'DOM' to do this, we're using the Mojo::DOM package that Dr Bainbridge found and which he's compiled up. Mojo::DOM is therefore also committed in this revision. Some further changes and some display fixes are required, but need to check with the others about that.

File size: 12.3 KB
Line 
1
2=encoding utf8
3
4=head1 NAME
5
6Mojolicious::Guides::FAQ - Frequently Asked Questions
7
8=head1 OVERVIEW
9
10This document contains answers for the most frequently asked questions about
11L<Mojolicious>.
12
13=head1 QUESTIONS
14
15We hope these answers are to your satisfaction.
16
17=head2 How does Mojolicious compare to other Perl web frameworks?
18
19The short answer is "it doesn't", because we interpret the term "web framework"
20much more literally than others. With the emergence of the real-time web and
21new technologies such as WebSockets, we are facing new challenges that go way
22beyond what commonly used modules like L<LWP> were designed for. Because of
23this, L<Mojolicious> contains a whole new HTTP client/server stack called
24L<Mojo>, which was heavily inspired by the original LWPng effort and carefully
25designed with these new requirements in mind. So while some of the higher
26abstraction layers might look similar to other web frameworks, it is more of a
27web toolkit and can even be used as the foundation for more advanced web
28frameworks.
29
30=head2 Why doesn't Mojolicious have any dependencies?
31
32We are optimizing L<Mojolicious> for user-friendliness and development speed,
33without compromises. While there are no rules in
34L<Mojolicious::Guides::Contributing> that forbid dependencies, we do currently
35discourage adding non-optional ones in favor of a faster and more painless
36installation process. And we do in fact already use several optional CPAN
37modules such as L<EV>, L<IO::Socket::Socks>, L<IO::Socket::SSL>,
38L<Net::DNS::Native>, L<Plack> and L<Role::Tiny> to provide advanced
39functionality if possible.
40
41=head2 Why reinvent wheels?
42
43Because we can make them rounder. Components specifically designed for
44user-friendliness and development speed are not easy to come by. We are strong
45believers of the Perl mantra "There is more than one way to do it", and our
46quest is to develop the best possible solutions for these two criteria.
47
48=head2 What about backwards compatibility?
49
50In conformance with L<Mojolicious::Guides::Contributing>, we will always
51deprecate a feature for 3 months, before removing or changing it in
52incompatible ways between major releases. New features can however be marked as
53experimental to explicitly exclude them from these rules. This gives us the
54necessary freedom to ensure a healthy future for L<Mojolicious>. So, as long as
55you are not using anything marked experimental, untested or undocumented, you
56can always count on backwards compatibility, everything else would be
57considered a bug.
58
59=head2 Why not split up Mojolicious into many smaller distributions?
60
61Because there are no advantages, it drastically increases maintenance costs and
62installation times without giving us anything in return. It would only make
63sense if we wanted to pass ownership of a module to a new maintainer, which we
64already have done in the past.
65
66=head2 Where can i discuss my patches for Mojolicious?
67
68We'd love to discuss your contributions to L<Mojolicious> on our official IRC
69channel C<#mojo> on C<irc.perl.org>
70(L<chat now!|https://chat.mibbit.com/?channel=%23mojo&server=irc.perl.org>).
71
72=head2 Which versions of Perl are supported by Mojolicious?
73
74First of all, you need to be aware that according to the L<perlpolicy>, only
75the two most recent stable release series of Perl are supported by the
76community and receive bug fixes, which are currently 5.26.x and 5.24.x.
77L<Mojolicious> follows this model and fully supports these two release series.
78In addition we will also keep the distribution installable up to a certain
79legacy version that we deem worthy of supporting, but not specifically optimize
80for it, this is currently 5.10.1.
81
82=head2 How well is Windows supported by Mojolicious?
83
84Windows is not officially supported by L<Mojolicious>, even though we try to
85keep the distribution installable. There may be serious security and/or
86reliability issues. Some of the more advanced features, such as
87L<subprocesses|Mojo::IOLoop/"subprocess"> and the
88L<Hypnotoad|Mojo::Server::Hypnotoad> web server, will also require the use of
89the L<Windows Subsystem for Linux|https://msdn.microsoft.com/commandline/wsl/>.
90
91=head2 Do I need to clean my environment before testing Mojolicious?
92
93L<Mojolicious> uses many environment variables both internally and externally,
94notably (but not exclusively) those starting with the prefix C<MOJO_*> and
95C<PLACK_ENV>. The test suite expects a clean environment; testing with a
96non-standard environment is unsupported and is unlikely to succeed. Therefore
97when installing or upgrading L<Mojolicious> and when running its tests, we
98highly recommend using an environment which does not set these variables.
99
100=head2 Where did my file extension go?
101
102Standard route placeholders will not match the C<.> character, however
103L<Mojolicious> routes automatically take file extensions like C<.html>, remove
104the leading C<.>, and store the result in the C<format> stash value. This can
105be useful for URL-based content negotiation, such as automatically rendering
106different templates based on the file extension. See
107L<Mojolicious::Guides::Routing/"Formats"> for information on customizing format
108detection, or consider using
109L<relaxed placeholders|Mojolicious::Guides::Routing/"Relaxed placeholders"> to
110allow matching of the C<.> character.
111
112=head2 Can I configure Hypnotoad from the command line?
113
114No, you can't, L<Hypnotoad|Mojo::Server::Hypnotoad> is a bit special in this
115regard. Because when you initiate a zero downtime software upgrade (hot
116deployment), you are only really sending a C<USR2> signal to the already running
117server, and no other information can be passed along. What you can do instead,
118is to use a L<Mojolicious::Plugin::Config> or L<Mojolicious::Plugin::JSONConfig>
119configuration file.
120
121 # myapp.conf
122 {
123 hypnotoad => {
124 listen => ['http://*:8080'],
125 workers => 10
126 }
127 };
128
129Or if you don't actually need zero downtime software upgrades, just use
130L<Mojolicious::Command::prefork> instead, which is otherwise almost identical to
131Hypnotoad.
132
133 $ ./myapp.pl prefork -m production -l http://*:8080 -w 10
134
135=head2 What does the error "...certificate verify failed" mean?
136
137There are many variations of this error, but most of them mean that TLS
138certificate verification in L<Mojo::UserAgent> failed. This usually happens for
139two reasons. The most common one is that the peer certificate is simply invalid.
140If that's the case and you are certain that no MITM attack is being attempted,
141you can use the attribute L<Mojo::UserAgent/"insecure"> or C<MOJO_INSECURE>
142environment variable to disable certificate verification. And if that's not the
143case you might be missing the L<Mozilla::CA> module, which is often required by
144L<IO::Socket::SSL> to be able to verify certificates.
145
146=head2 What does the error "Maximum message size exceeded" mean?
147
148To protect your applications from excessively large requests and responses, our
149HTTP parser has a cap after which it will automatically stop accepting new
150data, and in most cases force the connection to be closed. The limit is 16MiB
151for requests, and 2GiB for responses by default. You can use the attributes
152L<Mojolicious/"max_request_size"> and L<Mojo::UserAgent/"max_response_size"> to
153change these values.
154
155=head2 What does the error "Maximum start-line size exceeded" mean?
156
157This is a very similar protection mechanism to the one described in the
158previous answer, but a little more specific. It limits the maximum length of
159the start-line for HTTP requests and responses. The limit is 8KiB by default,
160you can use the attribute L<Mojo::Message/"max_line_size"> or
161C<MOJO_MAX_LINE_SIZE> environment variable to change this value.
162
163=head2 What does the error "Maximum header size exceeded" mean?
164
165Almost the same as the previous answer, but this protection mechanism limits
166the number and maximum length of HTTP request and response headers. The limits
167are 100 headers with 8KiB each by default, you can use the attributes
168L<Mojo::Headers/"max_lines"> and L<Mojo::Headers/"max_line_size"> or the
169C<MOJO_MAX_LINES> and C<MOJO_MAX_LINE_SIZE> environment variables to change
170these values.
171
172=head2 What does the error "Maximum buffer size exceeded" mean?
173
174This protection mechanism limits how much content the HTTP parser is allowed to
175buffer when parsing chunked, compressed and multipart messages. The limit is
176around 256KiB by default, you can use the attribute
177L<Mojo::Content/"max_buffer_size"> or C<MOJO_MAX_BUFFER_SIZE> environment
178variable to change this value.
179
180=head2 What does "Your secret passphrase needs to be changed" mean?
181
182L<Mojolicious> uses secret passphrases for security features such as signed
183cookies. It defaults to using L<Mojolicious/"moniker">, which is not very
184secure, so we added this log message as a reminder. You can change the
185passphrase with the attribute L<Mojolicious/"secrets">. Since some plugins also
186depend on it, you should try changing it as early as possible in your
187application.
188
189 $app->secrets(['My very secret passphrase.']);
190
191=head2 What does "Nothing has been rendered, expecting delayed response" mean?
192
193L<Mojolicious> has been designed from the ground up for non-blocking I/O and
194event loops. So when a new request comes in and no response is generated right
195away, it will assume that this was intentional and return control to the web
196server, which can then handle other requests while waiting for events such as
197timers to finally generate a response.
198
199=head2 What does "Inactivity timeout" mean?
200
201To protect your applications from denial-of-service attacks, all connections
202have an inactivity timeout which limits how long a connection may be inactive
203before being closed automatically. It defaults to C<20> seconds for the user
204agent and C<15> seconds for all built-in web servers, and can be changed with
205the attributes L<Mojo::UserAgent/"inactivity_timeout"> and
206L<Mojo::Server::Daemon/"inactivity_timeout"> or the C<MOJO_INACTIVITY_TIMEOUT>
207environment variable. In L<Mojolicious> applications you can also use the helper
208L<Mojolicious::Plugin::DefaultHelpers/"inactivity_timeout"> to change it on
209demand for each connection individually. This timeout always applies, so you
210might have to tweak it for applications that take a long time to process a
211request.
212
213=head2 What does "Premature connection close" mean?
214
215This error message is often related to the one above, and means that the web
216server closed the connection before the user agent could receive the whole
217response or that the user agent got destroyed, which forces all connections to
218be closed immediately.
219
220 # The variable $ua goes out of scope and gets destroyed too early
221 Mojo::IOLoop->timer(5 => sub {
222 my $ua = Mojo::UserAgent->new;
223 $ua->get('https://mojolicious.org' => sub {
224 my ($ua, $tx) = @_;
225 say $tx->result->dom->at('title')->text;
226 });
227 });
228
229=head2 What does "Worker 31842 has no heartbeat (30 seconds), restarting" mean?
230
231As long as they are accepting new connections, worker processes of all built-in
232pre-forking web servers send heartbeat messages to the manager process at
233regular intervals, to signal that they are still responsive. A blocking
234operation such as an infinite loop in your application can prevent this, and
235will force the affected worker to be restarted after a timeout. This timeout
236defaults to C<30> seconds and can be extended with the attribute
237L<Mojo::Server::Prefork/"heartbeat_timeout"> if your application requires it.
238
239=head2 What does "Connection already closed" mean?
240
241This error message usually appears after waiting for the results of a
242non-blocking operation for longer periods of time, because the underlying
243connection has been closed in the meantime and the value of the attribute
244L<Mojolicious::Controller/"tx"> is no longer available. While there might not be
245a way to prevent the connection from getting closed, you can also avoid this
246error message by keeping a reference to the transaction object that is not
247weakened. The helper L<Mojolicious::Plugin::DefaultHelpers/"delay"> will do this
248automatically for you.
249
250=head1 MORE
251
252You can continue with L<Mojolicious::Guides> now or take a look at the
253L<Mojolicious wiki|http://github.com/kraih/mojo/wiki>, which contains a lot more
254documentation and examples by many different authors.
255
256=head1 SUPPORT
257
258If you have any questions the documentation might not yet answer, don't
259hesitate to ask on the
260L<mailing list|http://groups.google.com/group/mojolicious> or the official IRC
261channel C<#mojo> on C<irc.perl.org>
262(L<chat now!|https://chat.mibbit.com/?channel=%23mojo&server=irc.perl.org>).
263
264=cut
Note: See TracBrowser for help on using the repository browser.