pub.php 205 B

12345678910111213
  1. <?php
  2. go(function () {
  3. $redis = new Swoole\Coroutine\Redis();
  4. $redis->connect('127.0.0.1', 6379);
  5. while (true)
  6. {
  7. $msg = $redis->publish('msg_1', 'hello-' . $i++);
  8. var_dump($msg);
  9. co::sleep(1);
  10. }
  11. });