| Gungho documentation | Contained in the Gungho distribution. |
Gungho::Component::RobotRules::Storage - RobotRules Storage Base Class
Holds the actual storage backend
Gets a rule for a particular URL
Stores a rule for a particular URL
Returns a list of requests that were waiting for that particular robots.txt information
Adds a request to the list of requests waiting for a particular robots.txt information
| Gungho documentation | Contained in the Gungho distribution. |
# $Id: /mirror/gungho/lib/Gungho/Component/RobotRules/Storage.pm 31135 2007-11-27T02:16:34.769889Z lestrrat $ # # Copyright (c) 2007 Daisuke Maki <daisuke@endeworks.jp> package Gungho::Component::RobotRules::Storage; use strict; use warnings; use base qw(Gungho::Base); __PACKAGE__->mk_accessors($_) for qw(storage); __PACKAGE__->mk_virtual_methods($_) for qw(get_rule put_rule get_pending_robots_txt push_pending_robots_txt); 1; __END__