我让php排队运行redis。现在我想利用redis sentinel。我不知道该怎么做。
文档中解释了使用php排队连接redis。
<?php
use Enqueue\Redis\RedisConnectionFactory;
$factory = new RedisConnectionFactory("redis+predis://localhost:6379");
连接redis sentinel还可以使用:
$sentinels = ['tcp://x.x.x.x:26379', 'tcp://x.x.x.x:26379', 'tcp://x.x.x.x:26379'];
$options = ['replication' => 'sentinel', 'service' => 'mymaster'];
$client = new \Predis\Client($sentinels, $options);
但是现在我需要连接到php排队和sentinel。我怎样才能把它修好?
暂无答案!
目前还没有任何答案,快来回答吧!