in reply to Creating a CGI Caching Proxy

Looks like you're forgetting the sub keyword in this line:
$resget = $ua->request( $reqget, sub { $queue->enqueue(@_) } );
As it's written now, you're just passing an anonymous hashref instead of an anonymous sub.

blokhead (300th post)