Rails 2.3.x 中有没有一种超级简单的方法来记录/报告页面浏览量?
我的 Rails 应用程序创建了一些非常简单的“登陆页面”,我想知道访问者何时通过“查看计数器”访问该网页。
是否有推荐的 gem、插件,或者有人可以发送给我来帮助我的一些代码?
谢谢。
My Rails app creates a handful of very simple "landing pages" and I'd like to know when a visitor comes to the web page with a "view counter."
Are there a recommended gem, plugin, or maybe some code someone can send to me to help me?
Thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
RailsStats 应与 2.3.x 兼容
RailsStats should be compatible with 2.3.x
我建议使用redis。它非常适合实时统计。它为您提供所需的速度和原子增量,而且它会持续存在。
如果您不想依赖外部事物,请尝试此链接。
rails 中页面浏览量的简单点击计数器
I would suggest with redis. It's perfect for realtime stats. It gives you the speed and atomic increments that you want, plus it persists.
If you dont want to rely on external things then try this link.
simple hit counter for page views in rails
试试这个插件.. https://github.com/iorum-ie/acts_as_viewable
它实际上检查IP地址,一段时间内来自同一IP的访问不会被重新统计。
Try this plugin .. https://github.com/iorum-ie/acts_as_viewable
It actually checks IP address so visits from the same IP won't be recounted within a period of time.