Hello everyone!
I recently developed a calculator for a newly released game on Steam. It helps players determine the best setup within the game, and as an extra feature, it suggests movie titles that users can use as inspiration for naming things in the game.
However, after deploying The Calculator, I noticed that the number of requests is unusually high, even though the site's traffic is relatively low. This has left me a bit confused, and I was wondering if someone here on the forum could take a look and suggest improvements to reduce the number of requests.
The file responsible for handling this query is "src/hooks/useRandomMovieTitle.ts", in case anyone wants to take a closer look at the code.
The project is open-source, completely non-profit (it doesn't even have ads), and is available on GitHub for anyone interested.
I’d really appreciate any help!
Can't find a movie or TV show? Login to create it.
Want to rate or add this item to a list?
Not a member?
Reply by ticao2 🇧🇷 pt-BR
on March 3, 2025 at 1:52 AM
I don't know anything about this subject.
Maybe admin Travis Bell can help.
I can only provide the information I have on this subject.
API Request Limits
First we have this information in the instructions for using the TMDb API.
https://developer.themoviedb.org/docs/rate-limiting
And Travis Bell, the Administrator, has already given us this explanation.
For API Requests:
See here: https://www.themoviedb.org/talk/62c7c1b258361b005fd2e747?page=1#62c83b78befd91005007a0c7
For Images:
See here:
https://www.themoviedb.org/talk/62edd3ca46aed400917de201#62ee88e7176a940086449cdf
https://www.themoviedb.org/talk/62c7c1b258361b005fd2e747?page=1#6301a107097c49007f60374a
https://www.themoviedb.org/talk/62c7c1b258361b005fd2e747
And...
Is there really no API Rate Limiting?
See here:
https://www.themoviedb.org/talk/6442ced4d35dea02fcfb0fab#6442d4a0d35dea0455fb1a07
Reply by Victor Franco
on March 3, 2025 at 2:03 AM
Obrigado @ticao2, eu não sabia dessas informações. Estava fazendo alguns testes aqui e consegui melhorar o desempenho do meu código fazendo com que as requisições não se prolonguem tanto e ainda reduzi o número de requisições armazenando parte dos dados em cache no navegador do usuário. Isso vai me permitir no futuro adicionar imagens e até mesmo sinopse para o projeto!