...
Option | Possible Values | Description |
---|---|---|
queue.runner | exec / curl | If set to exec the tasks are executed by creating a new process for each of them. This requires the availability of the proc_open method. The benefit is that the tasks do not clutter up the http server’s access log. By using curl each task is started by a http call to itself spawning a new process / reusing one of the FastCGI processes. |
queue.curlUrl | e.g. http://localhost/mydummypage/index.php | If not set the curl runner uses the routing provider to create the URL used to execute a task. This is ususally the URL used to access the page from the outside. If you need to use a different URL you can set it using this option. |
...