“Laravel Redis Cache” Réponses codées

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 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 dans Laravel

php artisan cache:clear
php artisan view:clear
php artisan route:clear
php artisan clear-compiled
php artisan config:cache
Breakable Butterfly

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

Laravel Redis Cache

// i am using laravel versioin 8  so...... 
// use this in ur controller then
use Illuminate\Support\Facades\Cache;
// in function 
Cache::put('key', 'value', 1440);// 1 day
Cache::get('key');
Cache::has('key');
Cache::pull('key');
Cache::forget('key');// remove spacific
Cache::flush(); // remove  all
polyglot orca

Réponses similaires à “Laravel Redis Cache”

Questions similaires à “Laravel Redis Cache”

Plus de réponses similaires à “Laravel Redis Cache” dans PHP

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code