我应该使用什么样的数据模型来存储历史数据?

发布于 2024-10-11 04:53:47 字数 266 浏览 4 评论 0原文

我正在使用 RoR 来测试设备和omniauth 集成。 我现在有一个模型,其中包含一个用户以及属于该用户的 FacebookUser 和 TwitterUser。

我现在可以将来自 Graph API 或 Twitter API 的数据存储在我的对象中,但我的问题是关于历史数据的。如果我想做一种 twittercounter.com 并存储关注者、推文等的历史记录。最好的做法是什么?

什么样的数据模型?我应该多久更新一次数据以及我应该保留哪些部分?

感谢您的帮助。

I'm hacking around with RoR to test devise and omniauth integration.
I now have a model with a User and a FacebookUser and TwitterUser that belong to a User.

I can now store data from the Graph API or Twitter API in my objects, but my question is about historical data. If I want to do a kind of twittercounter.com and store history of followers, tweets, etc. What is the best practice to do that ?

What kind of data model ? How often should I update the data and what part should I keep ?

Thanks for your help.

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

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

发布评论

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

评论(1

冰葑 2024-10-18 04:53:47

首先,您永远不应该存储更新行的完整副本。

一般来说,您很可能会坚持使用像版本控制系统那样保存更改的方法:保存操作和差异。

有一种将表的历史记录保存在另一个表中的模型。您只需稍作修改即可在您的应用程序中实现它。您可以在这篇精彩读物中找到更多内容。

First of all, you should never store a complete copy of an updated row.

In general, most likely you'll stick with approach that implies saving changes as revision control systems do: saving action and differences.

There is a model of saving history of table in another table. You can implement it in your app with little modifications. You can find more in this great read.

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