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?

link|improve this question

Knowing nothing about it, you aren’t quite following the synopsis usage. Perhaps adjust: match_url => [ '[?&]cache' ],. – Ashley Jul 27 '11 at 4:18
1  
It will take either: $match_url = [ $match_url ] unless ref $match_url; – wes Jul 27 '11 at 4:34
I believe this is a bug in Ingy's code. Open a bug on github or RT with a reproducible .psgi app code, and he could fix it. – miyagawa Aug 20 '11 at 7:21
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.