类似 Google Reader 的应用程序的数据库架构和查询

发布于 2024-12-12 04:12:12 字数 713 浏览 0 评论 0原文

为简单起见,我们假设我们有一个针对所有用户的单一 Feed

该提要只是文章列表。
每个用户都可以自由地收藏某篇文章或将其从个人视图中删除。

用户删除文章不影响其他用户;每个用户都有自己的提要“视图”。

简单的方法

我设计的一个简单的方案如下:

user -article

(当然,在实际应用中,用户需要做的更多-文章关系而不仅仅是隐藏或加星标。)

问题

看起来应该在第一次更改选项后延迟创建链接表条目。否则,当新用户注册或弹出新文章时,我们必须创建大量空链接记录,并处理并发。

这意味着为某个用户选择文章列表是一个结合了以下内容的查询:

  • 选择ArticleUserLink不存在的所有文章;
  • 选择存在 ArticleUserLink 且具有 is_hidden = 0 的所有文章。

这里的答案是OR,还是有更有效的数据库设计/查询来解决问题?

For simplicity, let's assume we have a single feed for all users.

The feed is just a list of articles.
Each user is free to favorite a certain article or remove it from their personal view.

User deleting an article does not affect other users; each user has its own “view” of the feed.

Simple Approach

A naïve scheme I devised is below:

user - article

(Of course, in the real application there is more to user-article relationship than just hiding or starring.)

The Problem

It looks like the link table entry should be created lazily, after the first change of options. Otherwise, when a new user signs up, or a new article pops up, we'd have to create a lot of empty link records, and also handle concurrency.

This means selecting a list of articles for a certain user is a query that combines:

  • selecting all articles for which ArticleUserLink does not exist;
  • selecting all articles for which ArticleUserLink exists and has is_hidden = 0.

Is OR the answer here, or is there a more effective database design / query to solve the problem?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

七颜 2024-12-19 04:12:12

使用内部查询怎么样?

SELECT * 
FROM Article a
WHERE NOT EXISTS(SELECT * FROM ArticleUserLink WHERE article_id = a.id AND (is_hidden IS NULL OR is_hidden != 0))

how about using an inner query?

SELECT * 
FROM Article a
WHERE NOT EXISTS(SELECT * FROM ArticleUserLink WHERE article_id = a.id AND (is_hidden IS NULL OR is_hidden != 0))
独守阴晴ぅ圆缺 2024-12-19 04:12:12

只需使用 LEFT JOIN< /a>

SELECT * 
FROM   Article a
LEFT   JOIN ArticleUserLink ua ON (ua.article_id = a.id)
WHERE  a.user_id = insert_user_id_here
AND    (ua.is_hidden = 0) IS NOT FALSE
...

通过这种方式,您可以获得

  • 在 ArticleUserLink 中没有关联条目的文章
  • 在 ArticleUserLink 中有关联条目 <代码>ua.is_hidden = 0

Just use a LEFT JOIN

SELECT * 
FROM   Article a
LEFT   JOIN ArticleUserLink ua ON (ua.article_id = a.id)
WHERE  a.user_id = insert_user_id_here
AND    (ua.is_hidden = 0) IS NOT FALSE
...

This way you get

  • articles that don't have an associated entry in ArticleUserLink
  • articles that do have an associated entry in ArticleUserLink and ua.is_hidden = 0
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文