Cac::Routine - Call COS routines or functions


Cac documentation Contained in the Cac distribution.

Index


Code Index:

NAME

Top

Cac::Routine - Call COS routines or functions

SYNOPSIS

Top

  use Cac::Routine;

  Do "tag", "routine", @args
  my $rc = Call "tag", "routine", @args

DESCRIPTION

Top

This module gives you a high-performance call-gate into Cache.

FUNCTIONS

Top

The following functions (which are all exported) exist:

Do $tag, $routine, [ @args ]
  Performs a DO and returns nothing.

Call $tag, $routine, [ @args ]
  Calls a Cache Function and returns it's result.

EXPORTS

Top

 none.

SEE ALSO

Top

Cac, Cac::Global, Cac::Bind, Cac::ObjectScript, Cac::ObjectScript.

AUTHOR

Top

 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__