| Cac documentation | Contained in the Cac distribution. |
Cac::Routine - Call COS routines or functions
use Cac::Routine; Do "tag", "routine", @args my $rc = Call "tag", "routine", @args
This module gives you a high-performance call-gate into Cache.
The following functions (which are all exported) exist:
Performs a DO and returns nothing.
Calls a Cache Function and returns it's result.
none.
Stefan Traby <stefan@hello-penguin.com> http://hello-penguin.com
| Cac documentation | Contained in the Cac distribution. |
package Cac::Routine; use 5.006; use strict; use warnings; use bytes; use XSLoader; XSLoader::load Cac unless $Cac::xs_loaded++; # this is in cacperl.xs :) require Exporter; use AutoLoader qw(AUTOLOAD); our @ISA = qw(Exporter); our @EXPORT_OK = qw( &Do &Call ); our @EXPORT = @EXPORT_OK; our $VERSION = 1.83;
1; __END__