WWW::RobotRules::Memcache - Use memcached in conjunction with WWW::RobotRules


WWW-RobotRules-Memcache documentation  | view source Contained in the WWW-RobotRules-Memcache distribution.

Index


NAME

Top

WWW::RobotRules::Memcache - Use memcached in conjunction with WWW::RobotRules

SYNOPSIS

Top

  use WWW::RobotRules::Memcache;

  my @memcache_servers = ('localhost:11211', '192.168.100.3:11211');

  my $rules = WWW::RobotRules::Memcache->new(@memcache_servers);
  my $ua = WWW::RobotUA->new('my-robot/1.0', 'me@foo.com', $rules);

  # Then just use $ua as usual
  $res = $ua->request($req);

DESCRIPTION

Top

This is a subclass of WWW::RobotRules that uses Cache::Memcache to implement persistent caching of robots.txt and host visit information.

FUNCTIONS

Top

new(server [, server ..])

When creating this object you must pass at least one memcache server.

AUTHOR

Top

Nick Gerakines, <nick at gerakines.net>

BUGS

Top

Please report any bugs or feature requests to bug-www-robotrules-cache at rt.cpan.org, or through the web interface at http://rt.cpan.org/NoAuth/ReportBug.html?Queue=WWW-RobotRules-Cache. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.

SUPPORT

Top

You can find documentation for this module with the perldoc command.

    perldoc WWW::RobotRules::Cache

You can also look for information at:

* AnnoCPAN: Annotated CPAN documentation

http://annocpan.org/dist/WWW-RobotRules-Cache

* CPAN Ratings

http://cpanratings.perl.org/d/WWW-RobotRules-Cache

* RT: CPAN's request tracker

http://rt.cpan.org/NoAuth/Bugs.html?Dist=WWW-RobotRules-Cache

* Search CPAN

http://search.cpan.org/dist/WWW-RobotRules-Cache

COPYRIGHT & LICENSE

Top


WWW-RobotRules-Memcache documentation  | view source Contained in the WWW-RobotRules-Memcache distribution.