开发者

Many MySQL databases - problem?

开发者 https://www.devze.com 2022-12-14 20:46 出处:网络
I\'d like to know if it is any kind of issue having 200+ MyS开发者_Go百科QL databases on the same server. None of them are probably going to be very used, I\'m just wondering if there is any issue hav

I'd like to know if it is any kind of issue having 200+ MyS开发者_Go百科QL databases on the same server. None of them are probably going to be very used, I'm just wondering if there is any issue having so much databases. Thanks in advance


Not necessarily. Shared-hosting services will usually have many hundreds of databases on each server, all relatively small. Just be sure you're not confusing "Databases" with "Tables," as is a problem for those new to that area of development.


No issues, they are just taking some disk space. If you don't need them, you can delete them or take backup of them then delete them.


Multiple tables is the problem, not databases.

Having enough tables will result in very poor performance as they'll need to be closed and reopened. With some engines (MyISAM) this also blows away some of the cache, which makes for very poor performance.

Whether you put them in multiple databases or a single one, makes no difference from a performance point of view.

It does however, make permissions management much easier.

0

精彩评论

暂无评论...
验证码 换一张
取 消