update : 2015.11.03
php.shukuma.com검색:
|
GearmanClient::addTask(PECL gearman >= 0.5.0) GearmanClient::addTask — Add a task to be run in parallel 설명
public GearmanTask GearmanClient::addTask
( string
$function_name
, string $workload
[, mixed &$context
[, string $unique
]] )Adds a task to be run in parallel with other tasks. Call this method for all the tasks to be run in parallel, then call GearmanClient::runTasks() to perform the work. Note that enough workers need to be available for the tasks to all run in parallel. 인수
반환값
A GearmanTask object or 예제
Example #1 Basic submission of two tasks
<?php 위 예제의 출력 예시: COMPLETE: 2, Hello World! COMPLETE: 1, !dlroW olleH Example #2 Basic submission of two tasks with passing application context
<?php 위 예제의 출력 예시: t2: H.foo:21, Hello World! t1: H:foo:22, !dlroW olleH 참고
|