-1
I am thinking of developing a project, in this case a website. I will need to have a database connection, I will opt for the mysql
. On the site people could create an account, and later create a list of information about them.
Example of the list:
tenho isto
fiz aquilo
estudei alem
nasci aqui
...
Example of the Database:
Tabela User
uid
uemail
upass
unome
....
Information Table
iid
iuid
iinfor
....
My question is what is the best way to store the list of information I thought of a table, but I think that in the future can go wrong. When the table Information
start having a lot of data I can lose a lot of time in the queries. Is there any other way to do what I intend to do, without having this waste of time or had it not reflected? Or this way I think will always be the best?
I leave yet another question and I will take the example of facebook
as all user information is stored, I think they should also have everything stored in a database, but only on a machine with an abnormal amount of processing, right?
Just create another table and can not save temporary can pop the database space has limit, recommend new table
TabelaUser_temp
blabla and then do Previous use merge is simple.– KingRider
@Kingrider, I’m sorry but you could explain yourself better
– Tmc
#Tmc, talking about cache or buffer pool, does not have to explain very long, is intermediate mysql work innodb and myisam are different to create temporario (save), tb is different performance. If it is cloud that can work Oracle is faster performance and has no limit.
– KingRider