How many MySql Select Calls I get

Hi, this is just a general question.

I had to stop using another website due to me making too many mysql database calls (it said I had done over 150,000). Is there a similar limit in InfinityFree, or is there no limit? Thanks so much for your help!

Check out this excellent article on the subject:

2 Likes

No, there is no straight up limit to the number of database queries. As long as your querying behavior doesn’t overload the database server, it’s all good.

How much load a site puts on the database server depends on many factors, including number of queries, nature of the queries, table schema and size and many other factors. It’s harder to predict, but more accurately supports the goal of stopping you from overloading the servers rather than harass you into upgrading.

4 Likes

After loading a page ~20 times with maybe 1-5 queries each time caused my site to get suspended, so the limit must not be too high (or the server wasn’t having a lot of MySQL traffic from other websites).

4 Likes

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