I'm using Ingy's Plack::Middleware::Cache to cache page requests to my Plack app. Unfortunately, the first request to a cacheable URL dies with 'body should be an array ref or filehandle'.
The cache package is really small, so it was fairly easy to track the problem down, but I'm not sure I have a good workaround. If I comment out line 57, everything works as expected. It's probably there for a reason though. The Plack request life-cycle has some stages I don't really get (particularly that last one about 'chunks', probably the most pertinent).
# in my app.psgi
builder {
enable 'Cache', match_url => '[?&]cache',
cache_dir => '/tmp/plack-cache';
# ... some 'mounts'
}
# in Plack::Middleware::Cache
return Plack::Util::response_cb(
$self->app->($env),
sub {
my $cache = shift;
make_path($dir) unless -d $dir;
return sub {
if (not defined $_[0]) {
nstore $cache, $file;
return;
}
$cache->[2] ||= '';
# comment out this line and errors go away!
#$cache->[2] .= $_[0]; # the body is an arrayref sometimes!
return $_[0];
}
}
);
As far as I can tell, the body (third element in the arrayref passed to response_cb's callback) is an arrayref. What could I be breaking by dropping that line?
match_url => [ '[?&]cache' ],. – Ashley Jul 27 '11 at 4:18$match_url = [ $match_url ] unless ref $match_url;– wes Jul 27 '11 at 4:34