I’m coming up with a web app which will want me to store more than 8 million rows. Will it be fine to handle those many number of rows with MySQL without having any performance degradation?
Assume my RAM to be 4 GB and Infinity GB Harddisk space. Also, the main fields have been indexed.
I’m coming up with a web app which will want me to store more
Share
I have a table which is very often read (written once every day at 4:00 AM), and it recently reached 8 million rows after a huge import.
The query also joins this table to another ~400k rows table.
There was no performance degradation after the import, compared to before it, so I believe you should be just fine, with a good server. (We have a dual-quad core, 8GB RAM)