Apache::XPP::Cache::Expiry - Cache expiry superclass


Apache-XPP documentation Contained in the Apache-XPP distribution.

Index


Code Index:

NAME

Top

Apache::XPP::Cache::Expiry - Cache expiry superclass

SYNOPSIS

Top

...

REQUIRES

Top

Nothing

EXPORTS

Top

Nothing

DESCRIPTION

Top

Apache::XPP::Cache::Expiry provides a barebones AUTOLOAD for XPP's Cache-Expiry classes.

METHDOS

Top

r ( )

Returns the Apache request object

REVISION HISTORY

Top

 $Log: Expiry.pm,v $
 Revision 1.7  2002/01/16 21:06:01  kasei
 Updated VERSION variables to 2.01

 Revision 1.6  2000/09/11 20:12:23  david
 Various minor code efficiency improvements.

 Revision 1.5  2000/09/07 19:02:41  dougw
 Pod, over fix

 Revision 1.4  2000/09/07 18:50:01  dougw
 Fixed pod error

 Revision 1.3  2000/09/07 18:44:52  dougw
 POD updates.




AUTHORS

Top

Greg Williams <greg@cnation.com>

SEE ALSO

Top

perl(1). Apache::XPP Apache::XPP::Cache


Apache-XPP documentation Contained in the Apache-XPP distribution.
package Apache::XPP::Cache::Expiry;

use Carp;
use strict;
use vars qw( $AUTOLOAD $debug $debuglines );

BEGIN {
	$Apache::XPP::Cache::Expiry::REVISION = (qw$Revision: 1.7 $)[-1];
	$Apache::XPP::Cache::Expiry::VERSION = '2.01';
	$debug		= undef;
	$debuglines	= 0;
}

*r = \&{ "Apache::XPP::r" };

*AUTOLOAD = \&{ "Apache::XPP::AUTOLOAD" };

1;

__END__