Answers for "symfony remove cache item + apcu"

PHP
1

composer remove cache

composer clearcache

#You can also use 

composer clear-cache

#which is an alias for clearcache.
Posted by: Guest on March-19-2021
1

clear cache without using composer in laravel 8

Route::get('/clear-cache', function() {
    $exitCode = Artisan::call('cache:clear');
    // return what you want
});
Posted by: Guest on January-10-2021

Browse Popular Code Answers by Language