cosenary / Simple-PHP-Cache

A light, simple but powerful PHP5 Cache Class which uses the filesystem for caching.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

What unit of time is the expiration.

winni4eva opened this issue · comments

I want to store data for a specific period but am not really sure the unit of time the store method expects
store($key, $data, <$expiration>);
Wondering if the expiration is in seconds, milliseconds. Not really sure

Found it in one of the issue threads.. seconds
$cache->store('hello', 'Hello World!', 60); //60 Seconds