Mysql improve SELECT speed

后端 未结 8 908
借酒劲吻你
借酒劲吻你 2021-01-02 05:24

I\'m currently trying to improve the speed of SELECTS for a MySQL table and would appreciate any suggestions on ways to improve it.

We have over 300 million records

8条回答
  •  悲&欢浪女
    2021-01-02 05:55

    I'd say your only chance to further improve it is a covering index with all three columns (tag, data, value). That avoids the table access.

    I don't think that partitioning can help with that.

提交回复
热议问题