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
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.
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.
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
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.
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.