| Package Data | |
|---|---|
| Maintainer Username: | jooorooo |
| Maintainer Contact: | jooorooo@gmail.com (Georgi Nachev) |
| Package Create Date: | 2016-02-10 |
| Package Last Update: | 2016-02-21 |
| Language: | PHP |
| License: | MIT |
| Last Refreshed: | 2025-10-27 03:04:14 |
| Package Statistics | |
|---|---|
| Total Downloads: | 42 |
| Monthly Downloads: | 0 |
| Daily Downloads: | 0 |
| Total Stars: | 1 |
| Total Watchers: | 1 |
| Total Forks: | 0 |
| Total Open Issues: | 0 |
Laravel 5 replace default cache
In "config/app.php" replace
with
//set cache
\Cache::set('category.list', $categories);
//get cache
$categories = \Cache::get('category.list');
//delete cache
\Cache::forget('category.list');
//or
\Cache::forget('category.*'); // delete all cache where key is category.{somename}