update : 2015.11.03
php.shukuma.com검색:
|
GearmanClient::do(PECL gearman >= 0.5.0) GearmanClient::do — Run a single task and return a result [deprecated] 설명
public string GearmanClient::do
( string
$function_name
, string $workload
[, string $unique
] )The GearmanClient::do() method is deprecated as of pecl/gearman 1.0.0. Use GearmanClient::doNormal(). 인수
반환값A string representing the results of running a task. 예제
Example #1 Simple job submission with immediate return
<?php
<?php 위 예제의 출력 예시: Starting Sending job Success: !olleH Example #2 Submitting a job and retrieving incremental status A job is submitted and the script loops to retrieve status information. The worker has an artificial delay which results in a long running job and sends status and data as processing occurs. Each subsequent call to GearmanClient::do() produces status information on the running job.
<?php
<?php 위 예제의 출력 예시: Worker output: Starting Waiting for job... Received job: H:foo.local:106 Workload: Hello! (6) 1/6 complete 2/6 complete 3/6 complete 4/6 complete 5/6 complete 6/6 complete Result: !olleH Client output: Starting Sending job Status: 1/6 complete Data: H Status: 2/6 complete Data: e Status: 3/6 complete Data: l Status: 4/6 complete Data: l Status: 5/6 complete Data: o Status: 6/6 complete Data: ! Success: !olleH 참고
|