
Net::Squid::Purge::UDP

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

This function performs the purge action on the designated 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 => [...])).

Paul Lindner <lindner at inuus.com> wrote the proof of concept for this module and provided the example code.

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

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.