awheel/cache-component

This package is abandoned and no longer maintained. No replacement package was suggested.

Awheel cache Component

1.5.0 2017-04-06 14:09 UTC

This package is auto-updated.

Last update: 2025-04-24 19:19:40 UTC


README

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

....