Minify::setCache(new Minify_Cache_APC());
Exibir arquivo
Open project: mrclay/minify
Class Usage Examples
Method | Description | |
---|---|---|
__construct ( integer $expire ) : null | Create a Minify_Cache_APC object, to be passed to Minify::setCache(). | |
display ( string $id ) | Send the cached content to output | |
fetch ( string $id ) : string | Fetch the cached content | |
getSize ( string $id ) : integer | Get the size of a cache entry | |
isValid ( string $id, integer $srcMtime ) : boolean | Does a valid cache entry exist? | |
store ( string $id, string $data ) : boolean | Write data to cache. |
Method | Description | |
---|---|---|
_fetch ( string $id ) : boolean | Fetch data and timestamp from apc, store in instance |
public __construct ( integer $expire ) : null | ||
$expire | integer | seconds until expiration (default = 0 meaning the item will not get an expiration date) |
return | null |