Tag: php frameworks
Insert and update bulk data in CakePHP 3.7
How to Insert and update bulk data in CakePHP 3.7? We can insert and update multiple records using “saveMany($entities)” function. We can create entities array from “newEntities() / patchEntities()” functions. newEntities function is used to insert new data and patchEntities
Laravel Cron to keep executing manually even for a long time
Laravel Cron to keep executing manually even for a long time The cron jobs we create in Laravel can be very time consuming if they have much to do. They may take a few minutes to execute completely. While testing