Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我用facebook connect创建了一个简单的博客站点,以了解朋友何时访问该博客。
要知道这一点,我必须保存 facebook 朋友的每个 id,有时一个人有多达 5000 个朋友,这意味着 5000 个 INSERT 查询(非常慢)。
您建议我使用什么解决方案来避免 5000 INSERT 查询?
也许我可以一次将所有 id 保存在 mysql 文本字段中?
改为执行一个长 INSERT查询:
INSERT
INSERT INTO `table` (`foo`, `bar`, `baz`) VALUES ('...', '...', '...'), ('...', '...', '...'), ...