PHP Класс Pop\Cache\Adapter\Apc

Автор: Nick Sagona, III ([email protected])
Наследование: implements Pop\Cache\Adapter\AdapterInterface
Показать файл Открыть проект

Защищенные свойства (Protected)

Свойство Тип Описание
$info array APC info

Открытые методы

Метод Описание
__construct ( ) : Apc Constructor
clear ( ) : void Method to clear all stored values from cache.
getInfo ( ) : string Method to get the current APC info.
load ( string $id, string $time ) : mixed Method to load a value from cache.
remove ( string $id ) : void Method to delete a value in cache.
save ( string $id, mixed $value, string $time ) : void Method to save a value to cache.

Описание методов

__construct() публичный Метод

Instantiate the APC cache object
public __construct ( ) : Apc
Результат Apc

clear() публичный Метод

Method to clear all stored values from cache.
public clear ( ) : void
Результат void

getInfo() публичный Метод

Method to get the current APC info.
public getInfo ( ) : string
Результат string

load() публичный Метод

Method to load a value from cache.
public load ( string $id, string $time ) : mixed
$id string
$time string
Результат mixed

remove() публичный Метод

Method to delete a value in cache.
public remove ( string $id ) : void
$id string
Результат void

save() публичный Метод

Method to save a value to cache.
public save ( string $id, mixed $value, string $time ) : void
$id string
$value mixed
$time string
Результат void

Описание свойств

$info защищенное свойство

APC info
protected array $info
Результат array