Documentation

Apc extends AbstractAdapter
in package

APC cache adapter class

Tags
category

Pop

author

Nick Sagona, III dev@nolainteractive.com

copyright

Copyright (c) 2009-2023 NOLA Interactive, LLC. (http://www.nolainteractive.com)

license

http://www.popphp.org/license New BSD License

version
3.4.0

Table of Contents

$ttl  : int
Global time-to-live
__construct()  : mixed
Constructor
clear()  : Apc
Clear all stored values from cache
deleteItem()  : Apc
Delete a value in cache
destroy()  : Apc
Destroy cache resource
getInfo()  : array<string|int, mixed>
Method to get the current APC info.
getItem()  : mixed
Get an item from cache
getItemTtl()  : int
Get the time-to-live for an item in cache
getTtl()  : int
Get the global time-to-live for the cache object
hasItem()  : bool
Determine if the item exist in cache
saveItem()  : Apc
Save an item to cache
setTtl()  : AbstractAdapter
Set the global time-to-live for the cache adapter

Properties

Methods

__construct()

Constructor

public __construct(int $ttl) : mixed

Instantiate the APC cache object

Parameters
$ttl : int
Tags
throws
Exception
Return values
mixed

clear()

Clear all stored values from cache

public clear() : Apc
Return values
Apc

deleteItem()

Delete a value in cache

public deleteItem(string $id) : Apc
Parameters
$id : string
Return values
Apc

destroy()

Destroy cache resource

public destroy() : Apc
Return values
Apc

getInfo()

Method to get the current APC info.

public getInfo() : array<string|int, mixed>
Return values
array<string|int, mixed>

getItem()

Get an item from cache

public getItem(string $id) : mixed
Parameters
$id : string
Return values
mixed

getItemTtl()

Get the time-to-live for an item in cache

public getItemTtl(string $id) : int
Parameters
$id : string
Return values
int

getTtl()

Get the global time-to-live for the cache object

public getTtl() : int
Return values
int

hasItem()

Determine if the item exist in cache

public hasItem(string $id) : bool
Parameters
$id : string
Return values
bool

saveItem()

Save an item to cache

public saveItem(string $id, mixed $value[, int $ttl = null ]) : Apc
Parameters
$id : string
$value : mixed
$ttl : int = null
Return values
Apc

Search results