We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In Gearman, you can do while ($worker->work()). Is it possible to have this approach, if applicable? Instead of doing...
while ($worker->work())
while (true) { $client->process(); }
Though i stumbled $client->process(30 * 60) and $configuration->setDelay(0.001) I have no idea if it achieve similar to Gearman approach.
$client->process(30 * 60)
$configuration->setDelay(0.001)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In Gearman, you can do
while ($worker->work())
. Is it possible to have this approach, if applicable? Instead of doing...Though i stumbled
$client->process(30 * 60)
and$configuration->setDelay(0.001)
I have no idea if it achieve similar to Gearman approach.The text was updated successfully, but these errors were encountered: