NAME

Net::Squid::Purge::HTTP

SYNOPSIS

use Net::Squid::Purge;
my $purger = Net::Squid::Purge->new({
  'squid_servers' => [
    { host => '192.168.100.3' },
    { host => '192.168.100.4' },
    { host => '192.168.100.5', port => '8080' },
  ],
}, 'HTTP');
$purger->purge('http://search.cpan.org/', 'http://blog.socklabs.com/');

FUNCTIONS

purge

This function performs the purge action on the designated squid servers.

squid_servers

Set the squid servers to use at run time. This is just an accessor, the same information can be set on object creation (new( squid_servers => [...])).

SEE ALSO

Please see Net::Squid::Purge for more information.

COPYRIGHT & LICENSE

Copyright 2006 Nick Gerakines, all rights reserved.

This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.