• Mysql Optimization Overview


    The information below i get from http://dev.mysql.com/doc/refman/8.0/en/optimize-overview.html

    Optimization at the database level 

    Database performance depends on several factors at the database level, such as tables, queries, and configuration settings. 

    1. Are the tables structured properly?

    2.  In particular, do the columns have the right data types, and does each table have the appropriate columns for the type of work?

    3.  Are the right indexes in place to make queries efficient?

    4. Are you using the appropriate storage engine for each table?

    5. Does the application use an appropriate locking strategy

    6. Are all memory areas used for caching sized correctly?

    Optimizing at the Hardware Level

    System bottlenecks typically arise from these sources

    1. Disk seeks. It takes time for the disk to find a piece of data

    2. Disk reading and writing

    3. CPU cycle

    4. Memory bandwidth

  • 相关阅读:
    mybatis
    spring mvc
    Spring Boot2
    Spring AOP
    Spring Boot1
    Spring IOC
    Multiple_LinearRegression_Test2
    Multiple_LinearRegression_Test
    Simple_LinearRegression_Test
    写决策树时遇到的坑
  • 原文地址:https://www.cnblogs.com/mengjianzhou/p/5939572.html
Copyright © 2020-2023  润新知