I'm thinking about developing a project, in this case a website. I will need to have a database connection, I will opt for mysql
. On the site people can create an account, and subsequently create a list of information about them.
List example:
tenho isto
fiz aquilo
estudei alem
nasci aqui
...
Database example:
Tabela User
uid
uemail
upass
unome
....
Table Information
iid
iuid
iinfor
....
My question is the following is the best way to store the list of information I thought of in a table, but I think that in the future it can go wrong. When the Information
table starts to have a lot of data I can lose a lot of time in the queries. Is there any other way I can do what I want to do without having this time lost or will it not be reflected? Or is this shape that I think will always be the best?
I still leave another question and I will take the example of facebook
how is stored all the information of the users, I think they should also have everything stored in a database, but only on a machine with an abnormal amount of processing, right?