Amazon RDS MySQL instance performs very slow

前端 未结 7 1567
轻奢々
轻奢々 2021-01-31 17:58

I have published my website on Amazon EC2 (Singapore region) and I have used MySQL RDS instance for the data storage. Everything is working very fine except performance.

7条回答
  •  醉话见心
    2021-01-31 18:08

    First i highly recommend to look over these queries using

    SHOW FULL PROCESSLIST

    You can read more about it on SHOW FULL PROCESSLIST

    This will show you the time each query take.

    Then you can use

    EXPLAIN

    You can read more about it on EXPLAIN

    This will show you if you need some enhancement on your queries

提交回复
热议问题