Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 291 Bytes

readme.md

File metadata and controls

17 lines (11 loc) · 291 Bytes

Cache Component

Cache Component for Awheel

usage


app('cache')->add($cacheKey, $value, $ttl);
app('cache')->set($cacheKey, $value, $ttl);
app('cache')->get($cacheKey, $default);
app('cache')->destory($cacheKey, $default);
app('cache')->forever($cacheKey, $default);

....