*Blog* mariocarrion.com/ *Example code* github.com/MarioCarrion/todo-api-microservice-example/tree/b886f4346851c860728ec7924d8b3196139af11e *Building Microservices in Go* kzbin.info/aero/PL7yAAGMOat_Fn8sAXIk0WyBfK_sT1pohu *Go Tools and Packages* kzbin.info/aero/PL7yAAGMOat_HEEOvH99agDs_5g51A0Ls3 *Testing in Go* kzbin.info/aero/PL7yAAGMOat_HSeW4zF0uRL9EaHadE4ZZq *Keep it up!*
@pavlochernovyy3 жыл бұрын
Mario thank you for detailed explanation. I was searching these kind of videos about go architecture at all. Keep doing great job! I love it.
@MarioCarrion3 жыл бұрын
Thanks Pavlo! Cheers.
@zeroc83 жыл бұрын
Hey Mario, thank you for your great tutorials. If I could post a wish - lots of developers, myself included, have use cases where RabbitMQ and Kafka are too heavyweight or impractical. Awesome but not quite as mainstream Go alternatives exist, such as Nats and Liftbridge (Eventstreaming on top of Nats). It would be great if you could cover those as well, I feel they deserve a lot more attention on KZbin. Thank's again and greetings from Austria!
@MarioCarrion3 жыл бұрын
Hello! Thanks for your suggestion, I will run a few experiments to test both of them. Cheers!
@iRoNYwho2 жыл бұрын
is there a way to wait for response when rabbitmq sends event? (request a thing and wait response for same request )
@MarioCarrion2 жыл бұрын
I'm not sure if I understand the question, do you mean Publish an event and then Consume that event in the same program?
@iRoNYwho2 жыл бұрын
@@MarioCarrion hey thank you for answer, i googled it, its request-reply pattern. (imagine calling api and getting data), how should i apply this pattern in your todo-ms-example? should i create a new instance of rmq for request-reply pattern?