You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
useIlluminate\Support\Facades\Cache;
// Caching a user$user = Cache::remember('user_'.$id, 600, function () use ($id) {
return User::find($id);
});
After Update:
useIlluminate\Support\Facades\Cache;
// Utilizing the new async caching API$user = Cache::asyncRemember('user_'.$id, 600, function () use ($id) {
return User::find($id);
});
The text was updated successfully, but these errors were encountered:
need update laravel 12 befor
Before Update:
After Update:
The text was updated successfully, but these errors were encountered: