如何设计个性化投票数据库

发布于 2024-10-14 20:00:04 字数 253 浏览 1 评论 0原文

我想知道如何创建类似于 Twitter 的东西,但在关系数据库中。

Weil 的 FlockDB 的一个应用 cites 正在确定哪些用户 显示@回复。例如,如果 阿什顿·库彻 (Ashton Kutcher) 发送推文至 @foursquare,它不应该出现 Kutcher 的所有 6,156,915 位关注者。 它应该只对以下用户显示 关注 Kutcher 和 Foursquare。

I wonder how to create something like is doing twitter, but in relational databases.

One application of FlockDB that Weil
cites is determining which users to
show @ replies to. For example, if
Ashton Kutcher sends a tweet to
@foursquare, it shouldn't show up for
all of Kutcher's 6,156,915 followers.
It should show up only for users that
follow both Kutcher and Foursquare.

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

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

发布评论

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

评论(1

绝影如岚 2024-10-21 20:00:04

它与数据库设计无关,而是与查询数据库的方式有关。

您肯定将每个@follow存储在单独的表中,在那里您将有字段谁发推文谁回复。您将向用户 X 显示所有@follows,其中发推文和回复都在他关注的人集中:)

It has nothing to do with database design, but with how you query the database.

You definitely store each @follow at separate table, there you will have fields who tweets and who is replied. Than you will show the user X all @follows, in which both tweeting and replied is in set of people who he follows :)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文