Victor Wu
0
Q:

laravel cache

//[SAFE] Clears all cache with 1 line! 
php artisan route:clear &&  php artisan view:clear && php artisan config:clear && php artisan cache:clear && php artisan clear-compiled
5
Cache::put('key', 'value', $seconds);
Cache::rememberForever('users', function () {
    return DB::table('users')->get();
}); 
Cache::get('key');
Cache::has('key');
Cache::pull('key');
0

New to Communities?

Join the community