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


PHP Resque::Redis方法代碼示例

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


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

示例1: clearWorker

 private function clearWorker()
 {
     \Resque::Redis()->del('ResqueWorker');
 }
開發者ID:neoseeker,項目名稱:fresque,代碼行數:4,代碼來源:Fresque.php

示例2: callCommand

 /**
  *
  * @since  1.2.0
  * @return  void
  */
 public function callCommand($command)
 {
     if (($settings = $this->loadSettings($command)) === false) {
         exit(1);
     }
     $args = $this->input->getArguments();
     $globalOptions = array('s' => 'host', 'p' => 'port', 'b' => 'path', 'c' => 'path', 'a' => 'path', 'd' => 'handler', 'r' => 'args,');
     if ($command === null || !array_key_exists($command, $this->commandTree)) {
         $this->help($command);
     } else {
         if ($this->input->getOption('help')->value === true) {
             $this->output->outputLine();
             $this->output->outputLine($this->commandTree[$command]['help']);
             if (!empty($this->commandTree[$command]['options'])) {
                 $this->output->outputLine("\nAvailable options\n", 'subtitle');
                 foreach ($this->commandTree[$command]['options'] as $name => $arg) {
                     $opt = $this->input->getOption(is_numeric($name) ? $arg : $name);
                     $o = (!empty($opt->short) ? '-' . $opt->short : '  ') . ' ' . (is_numeric($name) ? '' : '<' . $arg . '>');
                     $this->output->outputLine(sprintf('%-15s --%-15s %s', $o, $opt->long, $opt->longhelp));
                 }
             }
             $this->output->outputLine("\nGlobal options\n", 'subtitle');
             foreach ($globalOptions as $name => $arg) {
                 $opt = $this->input->getOption(is_numeric($name) ? $arg : $name);
                 $o = '-' . $opt->short . ' ' . (is_numeric($name) ? '' : '<' . $arg . '>');
                 $this->output->outputLine(sprintf('%-15s --%-15s %s', $o, $opt->long, $opt->longhelp));
             }
             $this->output->outputLine();
         } else {
             $allowed = array_merge($this->commandTree[$command]['options'], $globalOptions);
             foreach ($allowed as $name => &$arg) {
                 if (!is_numeric($name)) {
                     $arg = $name;
                 }
             }
             $unrecognized = array_diff(array_keys($this->input->getOptionValues()), array_values($allowed));
             if (!empty($unrecognized)) {
                 $this->output->outputLine('Invalid options ' . implode(', ', array_map(function ($opt) {
                     return '-' . $opt;
                 }, $unrecognized)) . ' will be ignored', 'warning');
             }
             call_user_func_array(self::$Resque . '::setBackend', array($this->runtime['Redis']['host'] . ':' . $this->runtime['Redis']['port'], $this->runtime['Redis']['database'], $this->runtime['Redis']['namespace']));
             if ($this->runtime['Scheduler']['enabled'] === true) {
                 require_once realpath($this->runtime['Scheduler']['lib'] . DS . 'lib' . DS . 'ResqueScheduler' . DS . 'ResqueScheduler.php');
                 require_once realpath($this->runtime['Scheduler']['lib'] . DS . 'lib' . DS . 'ResqueScheduler' . DS . 'Stat.php');
             }
             $this->ResqueStatus = new \ResqueStatus\ResqueStatus(\Resque::Redis());
             $this->ResqueStats = new ResqueStats(\Resque::Redis());
             $this->{$command}();
         }
     }
 }
開發者ID:RTBF,項目名稱:Fresque,代碼行數:57,代碼來源:Fresque.php

示例3: get

 public static function get($jobId)
 {
     $data = Resque::Redis()->get('failed:' . $jobId);
     return unserialize($data);
 }
開發者ID:ztongle,項目名稱:yii2-resque,代碼行數:5,代碼來源:Redis.php


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