user3275707
user3275707

Reputation: 89

800 websites sharing same unique original database

Is possible to have multiple websites (800 total) hosted in a dedicated server to connect and use the tables of a unique mysql database?

Upvotes: 0

Views: 112

Answers (1)

user753676
user753676

Reputation:

It should work normally: Maximum concurrent connections to MySQL

You'd probably run out of memory, file handles, and network sockets, on your server long before you got anywhere close to that limit.

But keep in mind that you are using one MySQL Server which can have lower limits in the settings.

So you should be using caching solutions to lower the amound of requests.

Upvotes: 1

Related Questions