[ Mini Kiebo ]
Server: Windows NT DESKTOP-5B8S0D4 6.2 build 9200 (Windows 8 Professional Edition) i586
Path:
D:
/
Backup
/
14082024
/
Data
/
htdocs
/
htdocs
/
ojs
/
248
/
lib
/
pkp
/
classes
/
cache
/
[
Home
]
File: APCCache.inc.php
<?php /** * @file classes/cache/APCCache.inc.php * * Copyright (c) 2013-2019 Simon Fraser University * Copyright (c) 2000-2019 John Willinsky * Distributed under the GNU GPL v2. For full terms see the file docs/COPYING. * * @class APCCache * @ingroup cache * @see GenericCache * * @brief Provides caching based on APC's variable store. */ import('lib.pkp.classes.cache.GenericCache'); class apc_false {}; class APCCache extends GenericCache { /** * Instantiate a cache. */ function APCCache($context, $cacheId, $fallback) { parent::GenericCache($context, $cacheId, $fallback); } /** * Flush the cache. */ function flush() { $prefix = INDEX_FILE_LOCATION . ':' . $this->getContext() . ':' . $this->getCacheId(); $info = apc_cache_info('user'); foreach ($info['cache_list'] as $entry) { if (substr($entry['info'], 0, strlen($prefix)) == $prefix) apc_delete($entry['info']); } } /** * Get an object from the cache. * @param $id */ function getCache($id) { $key = INDEX_FILE_LOCATION . ':'. $this->getContext() . ':' . $this->getCacheId() . ':' . $id; $returner = unserialize(apc_fetch($key)); if ($returner === false) return $this->cacheMiss; if (get_class($returner) === 'apc_false') $returner = false; return $returner; } /** * Set an object in the cache. This function should be overridden * by subclasses. * @param $id * @param $value */ function setCache($id, $value) { $key = INDEX_FILE_LOCATION . ':'. $this->getContext() . ':' . $this->getCacheId() . ':' . $id; if ($value === false) $value = new apc_false; apc_store($key, serialize($value)); } /** * Get the time at which the data was cached. * Not implemented in this type of cache. */ function getCacheTime() { return null; } /** * Set the entire contents of the cache. * WARNING: THIS DOES NOT FLUSH THE CACHE FIRST! */ function setEntireCache(&$contents) { foreach ($contents as $id => $value) { $this->setCache($id, $value); } } } ?>