KumbiaPHP/KumbiaPHP

View on GitHub
core/libs/cache/drivers/APC_cache.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
/**
 * KumbiaPHP web & app Framework
 *
 * LICENSE
 *
 * This source file is subject to the new BSD license that is bundled
 * with this package in the file LICENSE.
 *
 * @category   Kumbia
 * @package    Cache
 * @subpackage Drivers
 *
 * @copyright  Copyright (c) 2005 - 2023 KumbiaPHP Team (http://www.kumbiaphp.com)
 * @license    https://github.com/KumbiaPHP/KumbiaPHP/blob/master/LICENSE   New BSD License
 */

/**
 * Cacheo de Archivos
 *
 * @category   Kumbia
 * @package    Cache
 * @subpackage Drivers
 */
class APCCache extends Cache
{

    /**
     * Carga un elemento cacheado, el apc_fetch puede recibir un array (nuestro cache no)
     *
     * @param string $id
     * @param string $group
     * @return string|null
     */
    public function get($id, $group='default')
    {
        $this->_id = $id;
        $this->_group = $group;

        $data = apc_fetch("$id.$group");
        if ($data !== FALSE) {
            return $data;
        }
    }

    /**
     * Guarda un elemento en la cache con nombre $id y valor $value
     *
     * @param string $id
     * @param string $group
     * @param string $value
     * @param int $lifetime tiempo de vida en forma timestamp de unix
     * @return boolean
     */
    public function save($id, $group, $value, $lifetime)
    {
        if (!$id) {
            $id = $this->_id;
            $group = $this->_group;
        }

        if ($lifetime) {
            $lifetime = strtotime($lifetime) - time();
        } else {
            $lifetime = '0';
        }

        return apc_store("$id.$group", $value, $lifetime);
    }

    /**
     * Limpia la cache, con APC se limpia TODA no sólo el grupo
     *
     * @param string $group No se usa con APC
     * @return boolean
     */
    public function clean($group=false)
    {
        return apc_clear_cache('user');
    }

    /**
     * Elimina un elemento de la cache
     *
     * @param string $id
     * @param string $group
     * @return boolean
     */
    public function remove($id, $group='default')
    {
        return apc_delete("$id.$group");
    }

}