There are a couple of good ways to try and determine unique visitors, none of them are exact (which is why different analytics will report different numbers).
(有几种尝试方法来确定唯一身份访问者,但是没有一个是准确的(这就是为什么不同的分析将报告不同数量的原因)。)
The first is to use a cookie.
(首先是使用cookie。)
Create a cookie for the user for each time frame that you want to track uniques, so you could create one that expires in a day and one that expires in a month. (为您要跟踪唯一身份的每个时间范围的用户创建一个cookie,因此您可以创建一个在一天之内到期而一个在一个月内到期的cookie。)
You can then use both of those to track how many unique daily/monthly visitors you have. (然后,您可以同时使用这两者来跟踪您拥有多少不重复的每日/每月访问者。)
Of course this is not perfect since people can clear or refuse cookies, but it is pretty accurate. (当然,这不是完美的,因为人们可以清除或拒绝cookie,但这是非常准确的。)
The other way is to track uniques using a combination of the IP address and User Agent of the requesting user, this is probably slightly less accurate since if a company has a good IT group lots of internal users will have the same User Agent and since they are all coming from the same internal network could have the same IP address.
(另一种方法是使用IP地址和请求用户的用户代理的组合来跟踪唯一性,这可能会稍差一些,因为如果公司拥有良好的IT组,则很多内部用户将拥有相同的用户代理,并且来自同一内部网络的所有设备都可能具有相同的IP地址。)
If you are interested in reading more about the different methods there is a great article about it here: http://www.google.com/support/urchin45/bin/answer.py?answer=28325
(如果您有兴趣阅读有关不同方法的更多信息,请在此处找到一篇很棒的文章: http : //www.google.com/support/urchin45/bin/answer.py?answer=28325)
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…