Комментарии •

  • @NevyanNeykov
    @NevyanNeykov 3 года назад

    Don't forget to subscribe for new content: ruclips.net/user/editplus

  • @vitocorlitto
    @vitocorlitto 2 года назад +2

    Спасибо, видео зашло.

  • @muhammadumarsotvoldiev8768
    @muhammadumarsotvoldiev8768 9 месяцев назад

    Thank you very much

  • @nameLastname786
    @nameLastname786 Год назад

    Thank you a lot !

  • @ShreyaTamrakar-y1z
    @ShreyaTamrakar-y1z 9 месяцев назад

    hi,im facing The connection timed out after 3 sec while awaiting incoming data issue how to solve this

    • @NevyanNeykov
      @NevyanNeykov 9 месяцев назад

      Perhaps check with external mq explorer to send and receive messages.

  • @braintricker_soft
    @braintricker_soft Год назад

    what's different with laravel default database connected queue ?

    • @NevyanNeykov
      @NevyanNeykov Год назад

      there are different queue backends, local database variants, on cloud etc,: laravel.com/docs/master/queues

  • @zekotch
    @zekotch 2 года назад

    Hi, thank your very much, please how to display received message to view in realtime without refreshing page

    • @NevyanNeykov
      @NevyanNeykov 2 года назад +1

      hi, you can simply use JavaScript fetch() to send requests to the server at a regular time interval.

    • @zekotch
      @zekotch 2 года назад

      @@NevyanNeykov yes but you only show how to dispatch in controller but not how to consume or listen in controller

    • @NevyanNeykov
      @NevyanNeykov 2 года назад

      @@zekotch check at 3:56 on how to consume messages via a job, which in turn can invoke controller method, ref: github.com/vyuldashev/laravel-queue-rabbitmq

  • @skjahir1091
    @skjahir1091 2 года назад +1

    it is really great tutorial sir. is it possible to implement rabbitMq in laravel 5.2

    • @NevyanNeykov
      @NevyanNeykov 2 года назад +1

      thank you, I would suggest to better upgrade laravel to its current version, than try code patching.

  • @fila_ly
    @fila_ly 3 года назад

    hello i tried to implement this to my own laravel project but got this error that i can't solve: InvalidArgumentException:
    No connector for [rabbitmq].
    i did configure the queue.php and .env with my rabbitmq setting, so, both my rabbitmq and laravel work fine independently but can't connect to each other, might you have any solution?
    Thank you in advance

    • @NevyanNeykov
      @NevyanNeykov 3 года назад

      Hello, try adding the provider to config/app.php .

    • @fila_ly
      @fila_ly 3 года назад

      @@NevyanNeykov i actually solved it, but right now there's a new error with how i used the job function, i wrote the code same as your video but i got the error: Call to undefined method App\Jobs\RMQorder::dispatch()
      the dispatch doesn't work

    • @fila_ly
      @fila_ly 3 года назад

      bruh also this one now: Error Connecting to server(99): Cannot assign requested address
      x_x

    • @NevyanNeykov
      @NevyanNeykov 3 года назад

      perhaps: stackoverflow.com/questions/64998793/getting-a-call-to-undefined-method-in-laravel-when-doing-events

    • @fila_ly
      @fila_ly 3 года назад

      @@NevyanNeykov i fixed it, i needed only to replace "localhost" with "127.0.0.1" for the address to be assigned but there's new error 111 connection refused right now

  • @mofumofu3699
    @mofumofu3699 2 года назад

    How to add delayed message to the queue?

    • @NevyanNeykov
      @NevyanNeykov 2 года назад

      perhaps this would be of help: www.gosink.in/rabbitmq-how-to-send-delayed-scheduled-messages-for-webhooks-with-exponential-backoff/