I have tried to cache some queries with Cache::remember(); but it doesn't work.
My script response code is 500(Internal Server Error).
Here is my code:
$filters = \Cache::remember("cache_filter", 20, function(){
$data['value1'] = MyClass::where('<condition>')->get();
$data['value2'] = MyClass::where('<condition>')->get();
$data['value3'] = MyClass::where('<condition>')->get();
return $data;
});
return view('custom.show')->with($filters);
Storage permissions => 777 Cache path => storage_path('framework/cache')
Does anyone have an idea?
php artisan cache:clear- if you have run
php artisan config:cachebefore then you have to deleteconfig.phpfile frombootstrap/cache/, if not then just run first command (1.) - Try to run your code for caching data.
来源:https://stackoverflow.com/questions/35937153/laravel-5-cache-remember-doesnt-work