WebErpMesv2 icon indicating copy to clipboard operation
WebErpMesv2 copied to clipboard

[DEBT] Use asyncRemember

Open SMEWebify opened this issue 10 months ago • 0 comments

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);
});

SMEWebify avatar Mar 06 '25 08:03 SMEWebify