Will it not put a lot of load on the server and reduce the overall performance of the app if there is a cron running on the server say every minute. And not just the one, but multiple such crons. Using Laravel Scheduler right now to do something similar.
If I stop the Scheduler and instead use a external scheduling service like https://www.easycron.com which will run the crons and hit the urls with http methods that have been set to them.
The calls routed to a controller function which will execute what otherwise the internal cron service would have.
Which method is more recommended/advised and why?