Background Process

We have a background process that runs every 5 mins (Data Sync to a remote server).
The problem is that when it runs it blocks the main process. Does exeoutput allow multiprocess systems?

Yes, the environment uses a lot of multi-threading tasks. ExeOutput executes different threads for each PHP script or resource request. Now, we introduced a special component named “Timer”: its goal is to let you run PHP scripts in the background regularly. It fits what you want to achieve.
Check the tutorial here:
https://www.exeoutput.com/help/timer-cron-jobs-ui

1 Like

We are already using that but the background process blocks the main thread.
We’ve already checked if multi-threading is enabled on the settings

What does your background process do? Does it need UI or JS interaction?