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.
我已经看到一些研究比较了索引如何处理单调递增值(例如索引当前时间戳的列)和随机值(索引访问令牌的列)上的插入/更新负载。而那个。前者要快得多。
对于每个用户,文档总是单调增加的索引(用户,文档)怎么样?例如,
(user, document) 0, 0 0, 1 89, 0 0, 2 89, 1
该索引如何执行插入和更新?它会比随机插入更快吗?我希望所有查询始终包括用户。有没有更好的方法来索引这些?
这种插入模式是否被明确研究过?