0

在 wordpress 中有标签。因此,当用户插入帖子时,wordpress 必须至少执行 2 次查询(在 POST 表中插入并在 POST_TAG 表中插入)。

如果不使用事务(等等 innodb),这怎么能行得通?

我想知道这是因为我正在设计一个带有 POST 和 TAG 表以及多对多关系的类似项目,但我不能使用 innodb。

4

1 回答 1

1

Wordpress isn't often used in environments where there are a lot of concurrent users posting articles at the sametime. Where as, an open blogging platform like blogger.com is used by millions of users at once.

So a collision of transactions isn't likely to happen for the average Wordpress user.

于 2013-05-16T16:26:49.740 回答