Is a mysqli query cosidered a hit

Hi guys, so I’m on the free plan and I read this post about hits, but I still have this question.

if I connect to a server and a database using php as usual and do “SELECT * from tabe”, is this a hit or not ?
and can I do it like every 20 to 30 seconds or maybe less, just making some sort of a crazy testing project :slight_smile:

thanks

Every time you load a file, it counts as a hit.

A MySQL Query is not a file, so it does not count as a hit.

However, if you are reloading a PHP script to run that command, each reload counts as a hit

5 Likes

Thank you so much. that makes sense

3 Likes

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.