Hits Database question

does database take hits in infinintyfree?

No, database usage has zero effect on hits.

Hits are caused by web requests, i.e. requests made by browsers to URLs on your website. Whether that request is to a static file or to a PHP script, and whether that PHP script doesn’t use a database or makes hundreds of queries, it’s all just a single hit.

There are other limits and checks in place to prevent excessive database usage, but it’s pretty rare for websites to hit those. So as long as you’re being sensible with your database usage, I wouldn’t worry about it.

8 Likes

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