koleaby4 / next_movie

1 stars 1 forks source link

Search is slow because of consecutive fetching of movies #36

Closed koleaby4 closed 4 years ago

koleaby4 commented 4 years ago

Currently, searching for movies could take over 10 seconds. This is because SearchResultsListView.get_queryset() retrieves move details one by one and the next movie is only retrieved when the previous one is fully saved.

We have to speed this up by using multithreading.

koleaby4 commented 4 years ago

Done - using multithreading when storing new movies and fetching reviews