Hi there, I have recently begun using / trying out the Limonade PHP api framework.
I have a simple need to submit a job to a php engine.. that job works just fine by returning a UUID of the submitted job.
I then want to query on the status of that job. So I submit a new request to the API engine with the UUID and that request is held up while the first one finishes.
I have made the first one fork off a proces to get the UUID back because before the process would not return until the script completed - approximately 20 seconds or so. I thought forking the status request would do the same, but the API return is held up while the first one completes.
Can anyone possibly point me in a direction of why the requests are not in their own thread?