|
GearmanClient::addTaskAdd a task to be run in parallel 説明
public GearmanTaskfalse GearmanClient::addTask(
string $function_name,stringintfloat $workload,mixed $context = null,stringnull $unique_key = null) 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 例
例1 Basic submission of two tasks 上の例の出力は、 たとえば以下のようになります。 COMPLETE: 2, Hello World! COMPLETE: 1, !dlroW olleH 例2 Basic submission of two tasks with passing application context 上の例の出力は、 たとえば以下のようになります。 t2: H.foo:21, Hello World! t1: H:foo:22, !dlroW olleH 参考
|