skip to Main Content

PHP – Is fstat() cached?

I'd like to know if fstat() is cached. Documentation says nothing about it. (PHP 8.1.12) EDIT: I made a LOT of tests, I have now an accurate answer for that. Introduction: I created two scripts and ran them both simultaneously…

VIEW QUESTION

How to clear the cache on laravel 9 server

Does any one know how to clear the cache on laravel -9 on server I tried it and it took me to a 404 error page Route::get('/clear', function() { Artisan::call('cache:clear'); Artisan::call('config:clear'); Artisan::call('config:cache'); Artisan::call('view:clear'); return "Cleared!"; }); and Route::get('clear',[SiteController::class,'clear']); public function…

VIEW QUESTION
Back To Top
Search