如何设计个性化投票数据库
我想知道如何创建类似于 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
它与数据库设计无关,而是与查询数据库的方式有关。
您肯定将每个@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 :)