This is one of the best explanation of how coroutines and virtual threads works. And also how springboot has incorporated these changes. Kudos to Urs Peter!!!!!
@RockyJaiswal11 ай бұрын
This is one of the best talks I have seen and I have been trying to get Async + VT + Coroutines right for the last year or so and this talk answers all the questions and gives clear explanation of each model.
@slaynnyt813011 ай бұрын
This is amazingly clear and well explained, I'm gonna send this to all backend engineers of the company I work at as a must-watch!
@sushovanchakraborty102811 ай бұрын
The best explanation of virtual threads till date.
@wdeath11 ай бұрын
Clojure and spring webflux, is very simple to use also, functional dynamic, not spagheti code you just follow the flow. For people that like functional programming and data processing at least. Talk was very nice! Thank you.
@theDevorium11 ай бұрын
Really good explanations. But I kinda got lost in between switching good/bad approach in the end. I will have to watch it one more time I guess. Just a straightforward kotlin coroutines with spring boot+virtual threads would be nice. Keep up the good work. Cheers.
@JetherRodrigues11 ай бұрын
Amazing explanation. Congrats @Urs Peter
@milosristic111111 ай бұрын
Good evening.Cheers
@andrewsneck7 ай бұрын
this is brilliant which I have searched
@simonegiusso11 ай бұрын
What has been said by Peter at 25:24 is not correct. It did not go Out Of Memory. What happened in reality is that you hit the max number of native thread your OS allows you to create per java processor. The error says "possible out of memory OR PROCESSOR/RESOURCE LIMITES REACHED. If you reduce the available amount of heap, lets say 1GB or 512MB or even less, probably you will see the exactly same error and you will be able to create the maximum number of threads your OS allows you to create. An "empty" Platform Thread occupies 1/2MB of STACK not heap. Cheers.
@qweezique11 ай бұрын
thx ❤
@itshan378611 ай бұрын
This was excellent. can we get the demo project from some where - presentation-springboot-coroutines?
@Kotlin11 ай бұрын
Thanks for asking! Please find the link to the demo project in the description of the video.
@itshan378611 ай бұрын
@@Kotlin thanks a lot!😃😃😃
@nickernara11 ай бұрын
@@Kotlinthanks but i cant see any link in video description
@AntonArhipov11 ай бұрын
@@nickernara you need to click to expand the description text - there will be the link
@ИвайлоЙорданов-с2ы9 ай бұрын
Hi, what kind of tool Mr Urs Peter use for testing the performance of the spring boot app?
@АлександрСуходолов-э9ы3 ай бұрын
Thanks very much for this video! Was really interesting. I am never used relational DB with async drivers (only with jdbc), but use reactive MongoDB driver with Web Flux + Reactor or WebFlux + Coroutines. But I heard about some issues with using Hibernate and RDBMS. Does VT can help to use smoothly classic JDBC with Hibernate (using own thread pool with VT) in reactive app used on (Web Flux + Reactor/WebFlux + Coroutines)?