1. Reading and writing are not conflicting. It’s just that the data being written may not be read when reading, or the complete data must be read after the writing is completed. Please check the concept of things 2. Reading and writing conflicts? There are read and write conflicts in the same table, unless it is guaranteed that it cannot be read when writing, then the myisam engine can handle it. Check the concept of table locks 3. In terms of things, there is no conflict between reading and writing, unless you are a big For data and the like, consider nosql. Otherwise the innodb engine is enough.
1. Reading and writing are not conflicting. It’s just that the data being written may not be read when reading, or the complete data must be read after the writing is completed. Please check the concept of things
2. Reading and writing conflicts? There are read and write conflicts in the same table, unless it is guaranteed that it cannot be read when writing, then the myisam engine can handle it. Check the concept of table locks
3. In terms of things, there is no conflict between reading and writing, unless you are a big For data and the like, consider nosql. Otherwise the innodb engine is enough.