web.php 655 B

123456789101112131415161718192021
  1. <?php
  2. /*
  3. |--------------------------------------------------------------------------
  4. | Web Routes
  5. |--------------------------------------------------------------------------
  6. |
  7. | Here is where you can register web routes for your application. These
  8. | routes are loaded by the RouteServiceProvider within a group which
  9. | contains the "web" middleware group. Now create something great!
  10. |
  11. */
  12. $this->get('/', function (Illuminate\Contracts\Cache\Factory $cache) {
  13. /** @var \Illuminate\Contracts\Cache\Store $store */
  14. $store = $cache->store();
  15. $cid = 'some cid';
  16. $store->put($cid, 'value', 10);
  17. $v = $store->get($cid);
  18. return $v;
  19. });