| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- <?php
- /*
- * Copyright 2010-2015 by MODX, LLC.
- *
- * This file is part of xPDO.
- *
- * xPDO is free software; you can redistribute it and/or modify it under the
- * terms of the GNU General Public License as published by the Free Software
- * Foundation; either version 2 of the License, or (at your option) any later
- * version.
- *
- * xPDO is distributed in the hope that it will be useful, but WITHOUT ANY
- * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
- * A PARTICULAR PURPOSE. See the GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along with
- * xPDO; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
- * Suite 330, Boston, MA 02111-1307 USA
- */
- /**
- * Provides an APC-powered xPDOCache implementation.
- *
- * This requires the APC extension for PHP, version 3.1.4 or later. Earlier versions
- * did not have all the necessary user cache methods.
- *
- * @package xpdo
- * @subpackage cache
- */
- class xPDOAPCCache extends xPDOCache {
- public function __construct(& $xpdo, $options = array()) {
- parent :: __construct($xpdo, $options);
- if (function_exists('apc_exists')) {
- $this->initialized = true;
- } else {
- $this->xpdo->log(xPDO::LOG_LEVEL_ERROR, "xPDOAPCCache[{$this->key}]: Error creating APC cache provider; xPDOAPCCache requires the APC extension for PHP, version 2.0.0 or later.");
- }
- }
- public function add($key, $var, $expire= 0, $options= array()) {
- $added= apc_add(
- $this->getCacheKey($key),
- $var,
- $expire
- );
- return $added;
- }
- public function set($key, $var, $expire= 0, $options= array()) {
- $set= apc_store(
- $this->getCacheKey($key),
- $var,
- $expire
- );
- return $set;
- }
- public function replace($key, $var, $expire= 0, $options= array()) {
- $replaced = false;
- if (apc_exists($key)) {
- $replaced= apc_store(
- $this->getCacheKey($key),
- $var,
- $expire
- );
- }
- return $replaced;
- }
- public function delete($key, $options= array()) {
- $deleted = false;
- if (!isset($options['multiple_object_delete']) || empty($options['multiple_object_delete'])) {
- $deleted= apc_delete($this->getCacheKey($key));
- } elseif (class_exists('APCIterator', true)) {
- $iterator = new APCIterator('user', '/^' . str_replace('/', '\/', $this->getCacheKey($key)) . '/', APC_ITER_KEY);
- if ($iterator) {
- $deleted = apc_delete($iterator);
- }
- }
- return $deleted;
- }
- public function get($key, $options= array()) {
- $value= apc_fetch($this->getCacheKey($key));
- return $value;
- }
- public function flush($options= array()) {
- $flushed = false;
- if (class_exists('APCIterator', true) && $this->getOption('flush_by_key', $options, true) && !empty($this->key)) {
- $iterator = new APCIterator('user', '/^' . str_replace('/', '\/', $this->key) . '\//', APC_ITER_KEY);
- if ($iterator) {
- $flushed = apc_delete($iterator);
- }
- } else {
- $flushed = apc_clear_cache('user');
- }
- return $flushed;
- }
- }
|