-
-
Notifications
You must be signed in to change notification settings - Fork 773
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Your feedback #2
Comments
Hey, Thanks for this course. Prior to this course I already had some experience with reactive programming in JavaScript, I have used Angular with RxJs before. Angular plays well with reactive programming and I have consumed/transformed a lot of streams and also created some custom even emitters. So at first I thought that these exercises might be too easy for me, but actually those were quite challenging and I learned something new in each chapter (not just about Reactor API, but also on conceptual level on how reactive stream work in general. I think that the level of exercise are just right and instructions are clear enough. I took my time and looked at documentation and help texts, before checking the solutions. Usually I solved the tasks on my own, but then looked at solutions branch just to make sure that I have followed the best practices. Finishing all exercises took me about 1.5 days of effort. I especially liked the exercises on sinks, as those are vital to know when trying to combine legacy systems and reactive programming. I noticed that some tests were not strict enough and accepted non-optimal solutions:
I can make PR for c11 and c13, if you want 🙂, but I'm not sure what to change in c9. Thanks again for these exercises, they were really well done and I learned a lot 🙂 |
Hi, I did not have much experience with Reactive Programming. Started learning as this is a requirement for my work right now - think I found Your repo somewhere on WebFlux/Reactor documentation (I can't pinpoint the source). The exercises are very broad and due to my lack of experience, I had to use the solutions branch to better understand some concepts. Going to again read the whole Reactor reference with some own scribbles to better understand it. I spent 9 days finishing them as I was taking them occasionally (today I speed it up, as there was a risk that I will not be able to finish it at all). Except for the things found by @Eskumu I can add a few nitpicks:
I will definitely share your repository with my teammates, as maybe some of them will find it as useful as I. PS. Sorry for that PR - forgot to change the remote :) |
Thanks for the feedback @Eskumu, and @danpeczek! I will definitely revisit the exercises you have pinpointed and probably add a few new ones. @Eskumu feel free to open PRs for c11 & c13 if you have time. Contributions are always welcome, not just the bug fixes but also for suggesting new exercises. 😉 |
Howdy! I am a traditional Spring MVC developer and have been working on that model for years now. It was quite hard finding good sources to learn it. What I needed is exactly what you provided. A lot of exercises to practice the concepts of Reactive Programming with Reactor. There's really a lot of exercises and they cover a lot of operations. Thank you so much for your effort! As a suggestion you could do something similar but this time with WebFlux. Basically a repo where the student can practice the concepts of Reactive Programming applied to the Server Side. I am struggling a bit with that now, understanding how to best test the Controller with Flux and Mono. And how the whole thing works in general. I am not sure what I want to achieve is even possible, but a gut feeling tells me that I can do it. I would really appreciate your opinion if this is possible to build using Reactor + Web Flux. Basically I need to write a web application that calls three other API's and aggregates the results. But, there's a catch. I need to call those API's once I reach a certain amount of query parameters in a cache and then fire the request to the third party API's. I definitely see Flux.buffer being used to achieve that. But how do I return what is expected by each request? Because if I cache the requests and then fire them all at once each request will return the whole list of the results from other requests. Anyway, I know this is not the place to discuss that but your opinion would be greatly appreciated. Once again, big thank you for this content. Just incredible! |
Hi @lassounski, thanks for the feedback! Regarding the interview task requirements that are not clear in this text. |
Hi schananas, Thank you so much for the wonderful exercises! I'm a Java beginner and can't pass the The
BTW, I'm using Java 17, if this is useful info. |
I have the same issue with |
I am new to Reactor. The exercises are good, but I am going to have to study them a lot. I get errors with the BlockHound.install() calls and had to comment that line out to get the test to pass - lots of these lines: [Byte Buddy] ERROR java.util.IdentityHashMap$KeyIterator [null, module java.base, loaded=false] However, there is one thing that I still can't figure out. Mono monoProperty = myWebClient.getObject(accessToken, propertyResourceId); I want to do this without the block calls |
This is the place where you can post your feedback about exercises.
Are exercises too hard?
Are requirements clear enough?
How much time took you to finish all exercises?
Do you feel that your knowledge about Reactor improved after doing this workshop?
Any proposals for improvements or new exercises?
The text was updated successfully, but these errors were encountered: