I have a project in which I load several objects from a web service. For each of these objects, I need to call several web services to enrich the object. Like, for example, a book where I need to look for the author, year, comments, recommendations, etc.
One of the main areas of this project is performance, so I worry a little about it and the best approach for loading / enriching all of these objects.
Any suggestions for this architecture are welcome.
Now I am planning a book writing cycle (first list), and then an asynchronous request for web services to get the information needed to enrich each book. Is this a good approach? Or is there a better approach?
source
share