WebErpMesv2
WebErpMesv2 copied to clipboard
[DEBT] Use asyncRemember
need update laravel 12 befor
Before Update:
use Illuminate\Support\Facades\Cache;
// Caching a user
$user = Cache::remember('user_'.$id, 600, function () use ($id) {
return User::find($id);
});
After Update:
use Illuminate\Support\Facades\Cache;
// Utilizing the new async caching API
$user = Cache::asyncRemember('user_'.$id, 600, function () use ($id) {
return User::find($id);
});