我正在开发一个 HTML5 多人游戏, 这里的表格“ 关键字” 和“ 模型” 之间有一个 m:n 关系, 就像以下的图像显示 :
"https://i.sstatic.net/rRluf.jpg" alt="数据库计划"/>
keyword.id
and model.id
are auto_increment unsigned int and keyword.keyword
is an unique index.
For the sake of efficiency, I am searching for a way to manage the relation. The trivial way would be:
- Check if keyword already exist
- If yes: update
timesCount
androundCount
frommodel_has_keyword
- If no:
insert into keyword
andinsert into model_has_keyword
但是,随着越来越多的用户同时玩耍,我担心这个微不足道的方法会变得太慢。 那么,最有效的方法是什么?
在寻找StackOverflow时, 我发现了两个想法, 但我认为这两个想法都不符合我的需求。
INSERT INTO table ON DUPLICATE KEY UPDATE col=val
IfINSERT INTO
would be processed, I would need to trigger anotherINSERT INTO
statement to insert into both tableskeyword
andmodel_has_keyword
REPLACE
statement: if I replace the record in table keyword,id
is assigned the next auto-increment value, so that the reference for tablemodel_has_keyword
is lost.
我不是专家,请纠正我,如果我误解了这里的东西。