“Laravel Cache Rappelez-vous” Réponses codées

Effacer tout le cache Laravel

/**[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
Outrageous Ocelot

cache de laravel clair

php artisan view:clear 
php artisan cache:clear
php artisan route:clear
php artisan config:clear
php artisan optimize
Wicked Wallaby

cache claire de Laravel

//Laravel 7 / 2021-01
php artisan cache:clear
php artisan route:clear
php artisan config:clear
php artisan optimize
Mère Thorrésa

cache claire de Laravel

// Keep life simple :) 
sail artisan optimize:clear
or
php artisan optimize:clear

// Output: Cached events cleared!
"
Compiled views cleared!
Application cache cleared!
Route cache cleared!
Configuration cache cleared!
Compiled services and packages files removed!
Caches cleared successfully!
"
13Garth

cache de laravel clair

php artisan view:clear
php artisan config:clear
php artisan route:clear
php artisan cache:clear
php artisan clear-compiled
Modern Mouse

Laravel Cache Rappelez-vous

 public function index() {
        $minutes = 1440; # 1 day
        $posts = Cache::remember('posts', $minutes, function () {
            return Post::get();
        });
        return $posts;
    }
Abdullah Mohamed

Réponses similaires à “Laravel Cache Rappelez-vous”

Questions similaires à “Laravel Cache Rappelez-vous”

Plus de réponses similaires à “Laravel Cache Rappelez-vous” dans PHP

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code