awheel/cache-component

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

Awheel cache Component

Installs: 70

Dependents: 1

Suggesters: 0

Security: 0

Stars: 0

Watchers: 1

Forks: 0

Open Issues: 0

pkg:composer/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);

....