纠结如我,又纠结了,请大家帮忙看一下我该如何选择。
就一个没有文章的博客。一直用VPS太浪费,现在换成了虚拟主机。
但是虚拟主机的MYSQL数据库限制连接数30个,我不懂这是个什么概念,但是我觉得30太少了。
于是我就想用sqlite这个数据库。他在本机上。他们就限制不到了。
但是群里问了几次都不推荐这个。所以我就纠结了。
请帮忙选择一下。最好能告诉我为什么
巴扎黑2017-04-17 15:53:56
The number of links means that you can connect several customers at one time. Without a database connection pool, a new SQL will be created for each user's link access and executed in it. If the limit is exceeded, the link will not be able to be connected. Personally, I still prefer SQL, but in fact, it depends on the number of connections. It’s up to you, as long as you know how to use it
高洛峰2017-04-17 15:53:56
It is recommended to use sqlite in this situation, because blogs are more read and less written, and file databases are just as good as mysql in this regard, and can also bypass connection restrictions.
黄舟2017-04-17 15:53:56
SQLite performance is also very good, but under normal circumstances it is recommended to use mysql. The limit of 30 links you mentioned is indeed not much, but it is basically enough.