reduce cost by cloning URI objects
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Engine / CGI.pm
index dbdfbbd..eefe701 100644 (file)
@@ -5,6 +5,7 @@ use base 'Catalyst::Engine';
 use NEXT;
 use URI;
 
+my $uri_proto=URI->new();
 __PACKAGE__->mk_accessors('env');
 
 =head1 NAME
@@ -42,8 +43,6 @@ sub finalize_headers {
     my ( $self, $c ) = @_;
 
     $c->response->header( Status => $c->response->status );
-    
-    return unless *STDOUT->opened();
 
     print $c->response->headers->as_string("\015\012");
     print "\015\012";
@@ -142,7 +141,7 @@ sub prepare_path {
     my $path = $base_path . ( $ENV{PATH_INFO} || '' );
     $path =~ s{^/+}{};
 
-    my $uri = URI->new;
+    my $uri = $uri_proto->clone;
     $uri->scheme($scheme);
     $uri->host($host);
     $uri->port($port);