Jump to content

Processes in the Background :: Fork vs Exec


mgrayson

Recommended Posts

We had sign-up on our website that was taking too long (1 minute) to execute an array of procedures at checkout for new users...

 

So we...

 

(1) Put the bulk of procedures in another file (i.e. BehindTheScenes.php)

(2) Call this file (i.e. BehindTheScenes.php) to run in the background after checkout of a user by adding this line in our confirmation page...

 

        exec("/usr/bin/php ./BehindTheScenes.php > /dev/null 2>&1 &");

 

Issues...we tested 4 sign-ups seconds apart and only the first session/checkout is executing BehindTheScenes.php properly...which tells me that "instances", many unique processes of BehindTheScenes.php are not being executed...

 

Is there another way to fork/execute this properly so BehindTheScenes.php can be "forked"...many instances/processes can run at the same time?

 

 

Link to comment
https://forums.phpfreaks.com/topic/76345-processes-in-the-background-fork-vs-exec/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.