创建日志和Rails3 的历史

发布于 2024-10-17 13:20:54 字数 183 浏览 5 评论 0原文

我正在尝试在我的应用程序中创建一些有关用户的日志和历史记录。

例如,我想知道任何用户在任何一天总共有多少个帖子。还有其他一些很酷的指标。

首先,我的假设是,执行此操作的唯一方法是让 cron 作业运行一些任务,计算这些数字,并每天为每个用户将它们存储在一个新表中。

有没有更好或替代的方法来解决这个问题?

I'm trying to create some logs and history about users in my app.

For example, I'd like to know how many posts any user had total, on any given day. And some other cool metrics.

Off the bat, my assumption is that the only way to do this, is to have a cron job running some tasks, that calculates these numbers, and stores them for each user, every day, in a new table.

Is there a better or alternative way to go about this?

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

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

发布评论

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

评论(1

楠木可依 2024-10-24 13:20:54

您可以使用 make_resourceful 等插件。对于帖子,您可以重写 after :create 方法以发布到跟踪用户帖子数量的表。对于页面浏览量,您可以重写 after :show 方法。

您必须在控制器类中包含 make_resourceful 方法。例如:

class BlogPostsController < ApplicationController        
  make_resourceful do 
    actions :all

    response_for after :create do |format|
      BlogPostAudit.create (:user => current_user)
    end
  end 
end

You could use a plug-in such as make_resourceful. In the case of posts, you could override the after :create method to post to a table that tracks the number of posts for the user. In the case of page views, you could override the after :show method.

You must include the the make_resourceful methd in the controller class. For example:

class BlogPostsController < ApplicationController        
  make_resourceful do 
    actions :all

    response_for after :create do |format|
      BlogPostAudit.create (:user => current_user)
    end
  end 
end
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文