in reply to unwanted cache when using LWP to get content of a page
Try putting
before$request->header( 'Cache-Control' => 'no-store' ); $request->header( Pragma => 'no-cache' );
and that should avoid your proxy from keeping the cache.my $response = $browser->request #...
|
|---|