“Laravel Redis Cache” Ответ

Laravel Clear Cache

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

Чистый кэш Laravel

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

Кэш чист в Ларавеле

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

Чистый кэш Laravel

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

Кэш Laravel Помните

 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

Ответы похожие на “Laravel Redis Cache”

Вопросы похожие на “Laravel Redis Cache”

Больше похожих ответов на “Laravel Redis Cache” по PHP

Смотреть популярные ответы по языку

Смотреть другие языки программирования