Should I use flat tables or a normalized database?

前端 未结 7 955
南方客
南方客 2021-02-19 03:39

I have a web application that I am currently working on that uses a MySQL database for the back-end, and I need to know what is better for my situation before I continue any fur

相关标签:
7条回答
  • 2021-02-19 04:33

    Keep your data normalized. The system will should stay fast provided you have proper indexing.

    If you really want to go fast then switch the schema to one of the key value databases like bigDB /couchDB etc. That is totally denormalized and very very fast.

    0 讨论(0)
提交回复
热议问题