Does SQL calls in PHP count as hits?

So theres that thing called Daily page hits, and theres a limit on loading files like CSS, PHP, HTML, etc. Basically everything thats on hosting, but what about SQL calls that are in PHP?

SQL calls are not a hit. A hit is any file that is loaded, like the ones you described. However, too many SQL calls at once could get you temporarily suspended for I/O overuse (I think).
You may benefit from reading this KB:

1 Like

You’re right about everything, except for this part. SQL usage does not count against IO usage, IO usage only measures the interaction from PHP with stored files on your account. Database usage is tracked separately.

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