get('/', function (Illuminate\Contracts\Cache\Factory $cache) { /** @var \Illuminate\Contracts\Cache\Store $store */ $store = $cache->store(); $cid = 'some cid'; $store->put($cid, 'value', 10); $v = $store->get($cid); return $v; });