Hacker News new | ask | show | jobs
by nickknissen 3856 days ago
or just retrieve a list of movies

  movies_resp = requests.get("http://127.0.0.1:5001/movies?id=1&id=2&id=3")
1 comments

Right, so you implement this multi-get for every service, you work around the GET URL length limit by using POST or something, you do this slow HTTP join in parallel with any other service data you need if possible, in your application code, and you get what a single SQL JOIN gives you.