| Server IP : 10.10.92.66 / Your IP : 104.23.197.230 Web Server : Apache/2.4.52 (Ubuntu) System : Linux jurnalpolinema 5.15.0-177-generic #187-Ubuntu SMP Sat Apr 11 22:54:33 UTC 2026 x86_64 User : jurnal ( 1001) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /home/jurnal/public_html/lib/pkp/classes/cache/ |
Upload File : |
<?php
/**
* @file classes/cache/APCCache.inc.php
*
* Copyright (c) 2014-2021 Simon Fraser University
* Copyright (c) 2000-2021 John Willinsky
* Distributed under the GNU GPL v3. 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.
* @param $context string
* @param $cacheId mixed
* @param $fallback array PKP-style callback
*/
function __construct($context, $cacheId, $fallback) {
parent::__construct($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 mixed
* @return mixed
*/
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 mixed
* @param $value mixed
*/
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.
* @return null
*/
function getCacheTime() {
return null;
}
/**
* Set the entire contents of the cache.
* WARNING: THIS DOES NOT FLUSH THE CACHE FIRST!
* @param $contents array Complete cache contents.
*/
function setEntireCache($contents) {
foreach ($contents as $id => $value) {
$this->setCache($id, $value);
}
}
}