2
Case in point: I have a system with approximately 5 million records, it is recommended to use a single Mysql table to save, for example tabela_empresas_brasil
? since every time the user performs a query will need to search these 5 million records..
Can cause server overload? What is the best way to develop in this case?
Table partitioning and caching of the most accessed items are options.
– rray