SproutCMS

This is the code documentation for the SproutCMS project

Page options:

Inherited members

class Cache

Session cache driver.

Cache library config goes in the session.storage config entry:
$config['storage'] = array(
    'driver' => 'apc',
    'requests' => 10000
);
Lifetime does not need to be set as it is
overridden by the session expiration setting.

Variables

NameVisibilityDescription
$cache 
$encrypt 

Functions

NameVisibilityDescription
__constructpublic 
closepublic 
destroypublic 
gcpublic 
openpublic 
readpublic 
regeneratepublic 
writepublic 

public __construct

void $Cache->__construct ( );

This function does not have a description

public close

unknown $Cache->close ( );

This function does not have a description

public destroy

unknown $Cache->destroy ( mixed $id );

This function does not have a description

public gc

unknown $Cache->gc ( mixed $maxlifetime );

This function does not have a description

public open

unknown $Cache->open ( mixed $path , mixed $name );

This function does not have a description

public read

unknown $Cache->read ( mixed $id );

This function does not have a description

public regenerate

unknown $Cache->regenerate ( );

This function does not have a description

public write

unknown $Cache->write ( mixed $id , mixed $data );

This function does not have a description