Reputation: 359
If there are multiple thread which access (read/write) to a same table into a DB, what considerations of thread-safety should I take?
Upvotes: 2
Views: 2756
Reputation: 5794
Here are some good tips, for example if using MySQL
Here is some more information and reference
Upvotes: 3
Reputation: 56
check for mechanisms which implement transactions in different isolation levels. These mechanism are present in database system or your API.
Upvotes: 1