我通过laravel节点上的redis发布(发出)但是所有进程都在队列中工作我想同时运行

I am facing issue when i am emitting from laravel through redis in node and all the process of the redis is in the queue and i want to work simultaneously

 $data['db_name']=$_GET['db_name'];
 $data['task_id']=$_GET['task_id'];



   $redis = new \Predis\Client('tcp://127.0.0.1:6379'."read_write_timeout=1");

  $redis->Publish('message',json_encode($data));            

Here after sending or publishing it is waiting for the request to completed after that it will send request to the next queue i mean emit to it