MySQL Performance Optimization
Schema and data type optimization
InnoDB Index Optimization
Query performance optimization 1. For inefficient queries, we usually analyze them from two aspects:
2. Generally, MySQL can use the following three methods to apply WHERE conditions, from best to worst:
3.MySQL is designed to make connections and disconnections lightweight and efficient in returning small query results. On a general-purpose server, it is possible to run more than 100,000 queries per second. A gigabit network card can easily handle more than 2,000 queries per second. MySQL can scan millions of rows of data in memory per second. 4. When deleting a large amount of data, it is recommended to pause for a while after deleting a small batch of data before deleting the next batch. 5. Sorting is a very costly operation anyway, so from a performance perspective, you should avoid sorting as much as possible or avoid sorting large amounts of data as much as possible. 6. The COUNT() function has two different functions: it can count the number of values in a column or the number of rows. The simplest way is to count the number of rows through COUNT(*) 7. When doing a related query, make sure there is an index on the related field 8. If the amount of data is large and historical data needs to be deleted regularly, you can consider using a partition table 9. If the specified index column and partition column do not match, the query will fail to perform partition filtering 10. Avoid foreign key constraints as much as possible, usually implemented through programming, and keep foreign keys in mind 11. It is best not to use triggers, stored procedures, custom functions, etc. 12. Use query cache as much as possible. If there is some uncertain data (such as NOW() or CURRENT_DATE()) when writing query statements, it will not be cached. 13. Using multiple small tables instead of one large table is good for query caching 14. When writing in batches, only one cache invalidation is required, so it is more efficient than single writes (the cache is invalidated every time a write is made). For write-intensive applications, directly disable the query cache. 15. If the cache space is too large, the server may freeze during the expiration operation The above is a summary of my personal experience at work. If there are any errors in the description, I hope you can help point them out so that we can communicate and learn together! This is the end of this article about sharing MySQL performance optimization tips. For more relevant MySQL performance optimization content, please search for previous articles on 123WORDPRESS.COM or continue to browse the related articles below. I hope everyone will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: Encapsulation method of Vue breadcrumbs component
>>: Detailed explanation of Linux index node inode
Preface Everyone knows that the partition field m...
If you are looking to monitor your system interac...
Table of contents Preface Jump to APP method URL ...
1. The proxy_pass directive of the 1.ngx_stream_p...
Here are some common MySQL commands for you: -- S...
Recently, due to business reasons, I need to acce...
Step 1: Add Ubuntu source Switch to root su root ...
cause I recently started to refactor the project,...
Union is a union operation on the data, excluding...
I wrote a jsp page today. I tried to adjust <di...
This article example shares the specific code of ...
I searched for three-level linkage on the Interne...
I encountered a very unusual parameter garbled pro...
Table of contents 1. Software and system image 2....
How does "adaptive web design" work? It’...