MySQL Performance: Single table or multiple tables

后端 未结 4 1813
星月不相逢
星月不相逢 2021-01-06 08:35

I have a 8 sets of data of about 30,000 rows for each set, the data is the same structure just for different languages.

The front end of the site will get relatively

4条回答
  •  南笙
    南笙 (楼主)
    2021-01-06 08:57

    I agree with the other responses - I'd use of a single table. With regards to performance optimization a number of things have the potential to have a bigger impact on performance:

    • appropriate indexing
    • writing/testing for query efficiency
    • chosing appropriate storage engine(s)
    • the hardware
    • type and configuration of the filesystem(s)
    • optimizing mysql configuration settings

    ... etc. I'm a fan of High Performance MySQL

提交回复
热议问题