diff options
author | Ludovic Arnaud <ludovic_arnaud@users.sourceforge.net> | 2003-01-11 23:07:30 +0000 |
---|---|---|
committer | Ludovic Arnaud <ludovic_arnaud@users.sourceforge.net> | 2003-01-11 23:07:30 +0000 |
commit | 4533fba0fc13c5e5dd68e4cd5099bf37fa07fb22 (patch) | |
tree | 9760e112423346ea8bc37add2b5252d9c0f9d0b7 /phpBB/includes/acm/cache_file.php | |
parent | 85b196b5fe828c127d321527bd625a1727bad4aa (diff) | |
download | forums-4533fba0fc13c5e5dd68e4cd5099bf37fa07fb22.tar forums-4533fba0fc13c5e5dd68e4cd5099bf37fa07fb22.tar.gz forums-4533fba0fc13c5e5dd68e4cd5099bf37fa07fb22.tar.bz2 forums-4533fba0fc13c5e5dd68e4cd5099bf37fa07fb22.tar.xz forums-4533fba0fc13c5e5dd68e4cd5099bf37fa07fb22.zip |
Implementation of an experimental cache manager.
git-svn-id: file:///svn/phpbb/trunk@3313 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/includes/acm/cache_file.php')
-rw-r--r-- | phpBB/includes/acm/cache_file.php | 20 |
1 files changed, 1 insertions, 19 deletions
diff --git a/phpBB/includes/acm/cache_file.php b/phpBB/includes/acm/cache_file.php index a840274e01..c629bc4aac 100644 --- a/phpBB/includes/acm/cache_file.php +++ b/phpBB/includes/acm/cache_file.php @@ -19,10 +19,6 @@ * ***************************************************************************/ -// -// This class is part of the Advanced Cache Manager -// - class acm { var $vars = ''; @@ -90,21 +86,7 @@ class acm function load($varname, $expire_time = 0) { - if (!is_array($this->vars)) - { - $this->load_cache(); - } - if (isset($this->vars[$varname])) - { - if ($expire_time && time() - $this->vars_ts[$varname] > $expire_time) - { - $this->destroy($varname); - return null; - } - return $this->vars[$varname]; - } - - return null; + return (exists($varname, $expire_time)) ? $this->vars[$varname] : null; } function exists($varname, $expire_time = 0) |