PHPDaemon\Clients\Redis\Examples\Simple::onReady PHP Method

onReady() public method

Called when the worker is ready to go.
public onReady ( ) : void
return void
    public function onReady()
    {
        $this->redis = \PHPDaemon\Clients\Redis\Pool::getInstance();
        /*$this->redis->eval("return {'a','b','c', {'d','e','f', {'g','h','i'}} }",0, function($redis) {
              Daemon::log(Debug::dump($redis->result));
          });*/
        $this->redis->subscribe('te3st', function ($redis) {
            Daemon::log(Debug::dump($redis->result));
        });
        $this->redis->psubscribe('test*', function ($redis) {
            Daemon::log(Debug::dump($redis->result));
        });
    }