Skip to content

Commit

Permalink
mention compression in FAQ answer
Browse files Browse the repository at this point in the history
  • Loading branch information
kraih committed Nov 8, 2012
1 parent 884a089 commit d7c998f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
3 changes: 3 additions & 0 deletions Changes
@@ -1,4 +1,7 @@

3.56 2012-11-09
- Improved documentation.

3.55 2012-11-08
- Added gzip compression support to Mojo::UserAgent.
- Added is_compressed method to Mojo::Content.
Expand Down
2 changes: 1 addition & 1 deletion lib/Mojolicious.pm
Expand Up @@ -38,7 +38,7 @@ has static => sub { Mojolicious::Static->new };
has types => sub { Mojolicious::Types->new };

our $CODENAME = 'Rainbow';
our $VERSION = '3.55';
our $VERSION = '3.56';

sub AUTOLOAD {
my $self = shift;
Expand Down
6 changes: 3 additions & 3 deletions lib/Mojolicious/Guides/FAQ.pod
Expand Up @@ -77,9 +77,9 @@ C<MOJO_MAX_LINE_SIZE> environment variable to change this value.

This protection mechanism is very similar to those mentioned in the two
previous answers. It limits how much content the HTTP parser is allowed to
buffer when parsing chunked and multipart messages. This limit is around
C<256KB> by default, you can use the C<MOJO_MAX_BUFFER_SIZE> environment
variable to change this value.
buffer when parsing chunked, compressed and multipart messages. This limit is
around C<256KB> by default, you can use the C<MOJO_MAX_BUFFER_SIZE>
environment variable to change this value.

=head2 What does the error "EV does not work with ithreads" mean?

Expand Down

0 comments on commit d7c998f

Please sign in to comment.