Skip to content
This repository was archived by the owner on Apr 15, 2025. It is now read-only.

Latest commit

 

History

History
17 lines (11 loc) · 291 Bytes

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);

....