报告数据、存储汇总结果而不是原始数据的技术

发布于 2024-10-22 03:07:08 字数 158 浏览 1 评论 0原文

您可以提供哪些关于汇总报告数据点的技术/技巧,以便不必将原始数据存储在数据库中?

例如,如果我正在存储网站的页面视图流量,并且我的报告精确到小时,我可以按小时汇总所有数据库行,然后甚至可以按各种增量(例如每天/)创建进一步的汇总表月等。

在这些方面还有其他技巧/技巧吗?

What techniques/tips can you give in regards to summarizing report data points so you don't have to store the raw data in the database?

For example, if I was storing page view traffic for a website, and my reports were accurate to the hour I could roll-up all database rows by the hour, and then possible even create further summary tables by the various increments like per day/month etc.

Any other tricks/tips along these lines?

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

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

发布评论

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

评论(1

我是男神闪亮亮 2024-10-29 03:07:08

您正在谈论数据仓库/数据挖掘。您仍然需要数据库中的 OLTP(“原始”)数据,但您需要创建一个额外的 OLAP 数据仓库,其中包含“预先处理”的数字,以便更快地访问报告。然而,这在金钱和时间上都是一项昂贵的冒险——绝对不适合网站统计,除非你是谷歌或亚马逊。因此,您最好保留现有的设置,并使用查询来汇总数据。

You are talking about data warehousing / data mining. You still need OLTP ("the raw") data in a database, but you'd create an additional OLAP data warehouse with "pre-crunched" numbers for faster report access. However, this is an expensive venture in dollars and time - definitely not suitable for web site statistics unless you were Google or Amazon. So you are better off just keeping the setup that you have, and use your queries to summarize data.

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