FileCache Class Reference

Detailed Description

FileCache provides simple caching functionality.

The cache is divided into different sections. All sections share the same base path.

Author
ingo herwig ingo@.nosp@m.wemo.nosp@m.ve.co.nosp@m.m

Definition at line 25 of file FileCache.php.

+ Inheritance diagram for FileCache:

Public Member Functions

 __construct ()
 
 setCacheDir ($cacheDir)
 
 exists ($section, $key)
 
 get ($section, $key)
 
 put ($section, $key, $value)
 
 clear ($section)
 
 clearAll ()
 

Constructor & Destructor Documentation

__construct ( )

Constructor.

Definition at line 34 of file FileCache.php.

Member Function Documentation

setCacheDir (   $cacheDir)

Set the cache directory (defaults to session_save_path if not given).

If not existing, the directory will be created relative to WCMF_BASE.

Parameters
$cacheDirString

Definition at line 43 of file FileCache.php.

exists (   $section,
  $key 
)
See also
Cache::exists()

Implements Cache.

Definition at line 50 of file FileCache.php.

get (   $section,
  $key 
)
See also
Cache::get()

Implements Cache.

Definition at line 58 of file FileCache.php.

put (   $section,
  $key,
  $value 
)
See also
Cache::put()

Implements Cache.

Definition at line 69 of file FileCache.php.

clear (   $section)
See also
Cache::clear()

Implements Cache.

Definition at line 78 of file FileCache.php.

clearAll ( )
See also
Cache::clearAll()

Implements Cache.

Definition at line 106 of file FileCache.php.