Ver Fonte

Basic cache API

Frederic G. MARAND há 7 anos atrás
pai
commit
cdfad76986
1 ficheiros alterados com 7 adições e 2 exclusões
  1. 7 2
      routes/web.php

+ 7 - 2
routes/web.php

@@ -11,6 +11,11 @@
 |
 */
 
-Route::get('/', function () {
-    return view('welcome');
+$this->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;
 });