So semaphores in PHP are very convenient to synchronize jobs/tasks (process, to be more precise).
Say 1 process gains access to a semaphore and starts doing its thing (=work). 3 other processes are firing sem_acquire() to get access as well, at some order. They all get blocked, waiting for the semaphore to be free and assigned to each.
Question is: at what order will the 3 individual processes get executed? Common logic says that they'll get executed in first come (and gets blocked), first served (release to work), but I didn't see this statement in the official documentation.
Can anyone confirm or correct me? Thanks!
The PHP
sem_acquire()
function calls through to thesemop()
system call, which does not appear to make any guarantees regarding what order waiting processes will acquire a semaphore in.