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.
我正在创建一个应用程序,我想在其中显示用户浏览的最新文章。我想到的是创建一个表,在其中创建带有 userID 和 articleID 的行。但这种方法过于简单明了,一旦用户群增加,可能会遇到问题。
有一个更好的方法吗?我真的很确定一定有。
如果要记录哪些用户查看了哪些文章,添加一个表格,userID效果articleID很好。否则,将viewCount和lastViewDate字段添加到文章表就足够了(使用 cookie 将增量限制为每个会话一次)。无论哪种方式,性能问题都可以忽略不计,直到事情变得异常庞大。
userID
articleID
viewCount
lastViewDate