1. IntroductionThe topic of whether to use foreign key constraints is already a cliché. In school, most of what our teachers teach us is to establish foreign key constraints. However, in actual work, we often do not use foreign keys, but instead control them through code logic. Alibaba's JAVA specifications also clearly stipulate: [Mandatory] Foreign keys and cascades must not be used, and all foreign key concepts must be resolved at the application layer. Why do we need to make such regulations? Should foreign key constraints be used? We can give an example to illustrate 2. Examples Now we have created two tables in the database: [product and project]. The When we add a record with It can be seen that the existence of this constraint will ensure the integrity of the relationship between data in the tables. It is less likely to have dirty data. This is a very obvious advantage of foreign key constraints! To summarize, foreign key constraints have the following advantages:
But there are also disadvantages that cannot be ignored: Performance issues We have just created two tables, [project] and [product]. The [project] table has a foreign key constraint with the [product] table through the At this time, every time we insert data into the [project] table, it will first go to [product] to check whether there is corresponding related data. If it is controlled by the program, this query can be omitted. But if a foreign key constraint is set up, the query will definitely be performed. This is actually redundant. When there are few associated fields, there may be no impact, but once there are more associated fields, this impact will be particularly obvious! Deadlock Foreign keys cause queries to depend on other tables, which means InnoDB needs to check for corresponding values in the parent table (or related tables). This also locks the row in the parent table to ensure that the row is not deleted before the transaction completes. This can lead to unexpected lock waits or even deadlocks, which are difficult to locate. Difficulty in sharding A database with constraints will be particularly difficult to use when it needs to be divided into different databases and tables. Reduced development/testing efficiency In our daily testing process, we often encounter situations where we find a BUG and want to reproduce it or facilitate testing. We will directly change the data in the database table to facilitate testing. Although this is not standardized, the actual situation is that it can improve our efficiency a lot. This is beyond doubt! However, such operations may also bring some problems, such as bugs caused by data that are not actually program bugs, or some potential bugs cannot be discovered. Conclusion Currently, many Internet companies, especially large ones, require the disabling of foreign keys. This is not only due to performance issues, but also mainly because the Internet business changes quickly, which will indirectly lead to changes in the table structure. It is very likely that the existence of foreign key constraints will lead to unexpected problems and reduced development efficiency. Therefore, it is not recommended to use foreign key constraints in non-essential situations and business scenarios that do not require high reliability, so as to be more embracing of changes. This concludes this article on whether MySQL databases should use foreign key constraints. For more information about MySQL database foreign key constraints, please search for previous articles on 123WORDPRESS.COM or continue browsing the following related articles. I hope you will support 123WORDPRESS.COM in the future! You may also be interested in:
|
<<: CSS implements 0.5px lines to solve mobile compatibility issues (recommended)
>>: A quick solution to the automatic line break problem of table header in responsive framework
Table of contents Build a Docker image using Dock...
Table of contents 1. Affairs: Four major characte...
This article shares the specific code for impleme...
concept If the index contains all the data that m...
I encountered several problems when installing My...
Table of contents 1. Query Optimization 1. MySQL ...
This article shares the specific code of Element-...
Table of contents introduce Key Features Effect d...
We all know that Docker containers are isolated f...
1. DNS server concept Communication on the Intern...
When using Docker containers, it is more convenie...
Summary: Configure nginx reverse proxy jira and i...
Table of contents 1. Create a socket 2. Bind sock...
Table of contents Docker images What is a mirror?...
I searched the entire web and found all kinds of ...