當前位置: 首頁>>代碼示例>>PHP>>正文


PHP GearmanClient::doHigh方法代碼示例

本文整理匯總了PHP中GearmanClient::doHigh方法的典型用法代碼示例。如果您正苦於以下問題:PHP GearmanClient::doHigh方法的具體用法?PHP GearmanClient::doHigh怎麽用?PHP GearmanClient::doHigh使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在GearmanClient的用法示例。


在下文中一共展示了GearmanClient::doHigh方法的4個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: doHigh

 public function doHigh($task, $data)
 {
     return $this->_gearmanClient->doHigh($task, $data);
 }
開發者ID:otis22,項目名稱:reserve-copy-system,代碼行數:4,代碼來源:JobServer.php

示例2: doHigh

 public function doHigh($function_name, $workload, $unique = null)
 {
     $function_name = $this->_processFunctionName($function_name);
     return parent::doHigh($function_name, $workload, $unique);
 }
開發者ID:xiaoguizhidao,項目名稱:koala-framework,代碼行數:5,代碼來源:Client.php

示例3:

#!/usr/bin/env php
<?php 
//stop a single running worker
namespace phinde;

require_once __DIR__ . '/../src/init.php';
$gmclient = new \GearmanClient();
$gmclient->addServer('127.0.0.1');
$gmclient->doHigh($GLOBALS['phinde']['queuePrefix'] . 'phinde_quit', 'none');
開發者ID:cweiske,項目名稱:phinde,代碼行數:9,代碼來源:stop-worker.php

示例4: rotate

 /**
  * 
  * 圖片旋轉接口
  * GET rotate/:id.json?direction={方向}&size={尺寸}
  */
 public function rotate($pid)
 {
     $direction = intval($_GET['direction']);
     $size = intval($_GET['size']);
     $size = in_array($size, Core::config('photo_standard_type')) ? $size : 130;
     if ($direction != -1) {
         $direction = 1;
     }
     if (!$pid) {
         $this->response(ResponseType::ERROR_LACKPARAMS);
     }
     $client = new GearmanClient();
     $client->addServers(Core::config('job_servers'));
     $client->setTimeout(3000);
     $result = @$client->doHigh("rotate", serialize(array($pid, $direction)));
     $result && ($sid = @unserialize($result));
     if (!$sid) {
         $thumb = new Thumb();
         if ($thumb->rotate(NULL, $pid, $direction)) {
             $sid = TRUE;
         }
     }
     if ($sid) {
         $photoModel = new Models\Photo();
         $imgurls = $photoModel->geturi($pid, $size);
         $return['src'] = $imgurls[0];
         $this->response(ResponseType::PHOTO_ROTATE_OK, '', $return);
     } else {
         $this->response(ResponseType::PHOTO_ROTATE_ERROR);
     }
 }
開發者ID:momoim,項目名稱:momo-api,代碼行數:36,代碼來源:photo.php


注:本文中的GearmanClient::doHigh方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。