Ruby gem 跟踪搜索引擎重定向流量(搜索 keyworks)
我网站的大部分流量都是由搜索引擎发送的。我正在尝试跟踪搜索中使用的关键字(EG 以获取“最热门”搜索的实时统计数据)。
我有什么选择?我想到:
解析HTTP_REFERER(使用主要搜索引擎的列表正则表达式)
导入google分析数据(使用Google Analytics api) - 但这不是实时的
有没有任何gems/库为此提供支持?
Most of the traffic from my site is sent by search engines. I am trying to track the keywords used on the search (EG to have real-time stats on the 'hottest' searches).
What are my options? I thought of:
Parsing the HTTP_REFERER (using a list regexps for major search engines)
Importing google analytics data (using google analytics api) - however this is not realtime
Are there any gems/libraries that offer support for this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我会为机架编写一个中间件来执行此操作。 http://www.hokstad.com/slidingstats 是跟踪引荐来源网址的示例。它很容易破解,而且并不复杂,因此您可以使用它作为您想做的事情的启动板。
I would write a middleware for rack to do this. http://www.hokstad.com/slidingstats is an example of one that tracks referrers. It is pretty easy to hack and not complicated so you can probably use this as a launchpad for what you want to do.