楼主: 东方石
收起左侧

[资讯] Avira小红伞的全球用户总量正式突破3亿

[复制链接]
kira130139
发表于 2014-7-4 17:07:12 | 显示全部楼层
我在刷第二个三年avast!互联网key,我一个就要报了44个用户,
要是小红伞也能刷就好了
boyjoo
发表于 2014-7-4 17:57:25 | 显示全部楼层
本帖最后由 boyjoo 于 2014-7-4 17:58 编辑

想说通过分析后 证明AVIRA是实时安装用户数字的。(一段时间自动调整比对一次)
只不过前台显示略规律让你们产生误解。

见动态统计:http://www.avira.com/installscounter.php

官方用时间戳算的,时间戳每秒都不一样。
current是时间戳,看看JS便知。
var installsCounter = {
init: function(json) {
if (typeof json == "string" && json) {
json = $.parseJSON(json);
}
obj = this;
obj.jsonUrl = ('https:' == document.location.protocol ? 'https:' : 'http:') + "//www.avira.com/installscounter.php?t=" + new Date().getTime();
obj.counterContainer = $("#counter");
if (!json) {
this.fetchNewData(obj);
return;
}
obj.samples = json.samples;
obj.currentTimestamp = parseInt(json.current);
obj.endTimestamp = parseInt(json.current) + parseInt(json.interval);
obj.interval = parseInt(json.interval);
var samples = [];
for (timestamp in obj.samples) {
samples.push({
'timestamp': parseInt(timestamp),
'counter': parseInt(obj.samples[timestamp])
});
}
lastSample = samples[samples.length - 1];
currentTimestamp = ((obj.currentTimestamp - lastSample.timestamp) % obj.interval) + (lastSample.timestamp - obj.interval) + (samples[1].timestamp - samples[0].timestamp);
tempLeft = null;
tempRight = null;
$(samples).each(function(idx, value) {
if (value.timestamp <= currentTimestamp) {
tempLeft = value;
}
if (value.timestamp > currentTimestamp) {
tempRight = value;
return false;
}
samples.splice(0, 1);
});
currentValue = Math.round((tempRight.counter - tempLeft.counter) / ((tempRight.timestamp - tempLeft.timestamp) / (currentTimestamp - tempLeft.timestamp))) + tempLeft.counter;
obj.count(obj, {
'timestamp': currentTimestamp,
'counter': currentValue
}, samples);
},
count: function(obj, start, samples) {
nextStart = samples.splice(0, 1);
seconds = nextStart[0].timestamp - start.timestamp;
items = nextStart[0].counter - start.counter;
timeout = Math.round((seconds * 1000) / items);
obj.displayCount(obj, timeout, start.counter, nextStart[0], samples);
},
displayCount: function(obj, timeout, start, nextStart, samples) {
timeoutIdx = setTimeout(function() {
$(obj.counterContainer).html(obj.formatNumber(obj, ++start));
if (parseInt(nextStart.counter) == start) {
clearTimeout(timeoutIdx);
samples.splice(0, 1);
if (samples.length) {
obj.count(obj, nextStart, samples);
} else {
obj.fetchNewData(obj);
}
return false;
} else {
obj.displayCount(obj, timeout, start, nextStart, samples);
}
}, timeout);
},
formatNumber: function(obj, number, formated) {
formated = typeof formated == "undefined" ? formated = "" : formated;
var rest = obj.pad(number % 1000, 3, 0);
var remaining = number >= 1000 ? parseInt(number / 1000) : number;
formated = rest + "&nbsp;" + formated;
if (number >= 1000) {
formated = obj.formatNumber(obj, remaining, formated);
}
return formated;
},
pad: function(n, width, z) {
z = z || '0';
n = n + '';
return n.length >= width ? n : new Array(width - n.length + 1).join(z) + n;
},
fetchNewData: function(obj) {
$.ajax(obj.jsonUrl, {
dataType: "json",
success: function(data, textStatus, jqXHR) {
obj.init(data);
}
});
}
};
欧阳宣
头像被屏蔽
发表于 2014-7-5 00:35:15 来自手机 | 显示全部楼层
别看错了,那个是全球总安装次数,而非当前使用红伞的用户。再加上有些用户安装过不止一次,这个数字还是会有水分的。
xiaojinglf
发表于 2014-7-5 06:34:14 | 显示全部楼层
我觉得应该通过统计全球Avira更新服务器用户数量来计算用户数。安装量统计水分太大。比如我就安装过几百次。
xiajiebuhui
发表于 2014-7-6 19:00:01 | 显示全部楼层
中国多少,关心这个
Hertz
发表于 2014-7-7 08:42:14 | 显示全部楼层
BD号称5亿呢,把OEM引擎的用户也算进去的。红伞这个应该也是这样算的吧?
Eko_Liu
发表于 2014-7-7 08:45:53 | 显示全部楼层
额 应该没那么多吧
东方石
 楼主| 发表于 2014-7-7 08:46:48 | 显示全部楼层
Hertz 发表于 2014-7-7 08:42
BD号称5亿呢,把OEM引擎的用户也算进去的。红伞这个应该也是这样算的吧?

没有算OEM的,如果加上OEM的,应该接近10亿了
驭龙
发表于 2014-7-7 08:53:02 | 显示全部楼层
要知道这是下载安装数,你认为安装Avira的用户都不会卸载?这个数字不会减掉用户卸载量,这只是安装统计而已,不是用户数
东方石
 楼主| 发表于 2014-7-7 10:31:16 | 显示全部楼层
驭龙 发表于 2014-7-7 08:53
要知道这是下载安装数,你认为安装Avira的用户都不会卸载?这个数字不会减掉用户卸载量,这只是安装统计而 ...

官方会定期手动调整的,所以是净数字,估计过段时间可能要调整回3亿以下,因为要扣除这段时间卸载的,然后再重新累计上去
您需要登录后才可以回帖 登录 | 快速注册

本版积分规则

手机版|杀毒软件|软件论坛| 卡饭论坛

Copyright © KaFan  KaFan.cn All Rights Reserved.

Powered by Discuz! X3.4( 沪ICP备2020031077号-2 ) GMT+8, 2025-1-23 14:58 , Processed in 0.086802 second(s), 14 queries .

卡饭网所发布的一切软件、样本、工具、文章等仅限用于学习和研究,不得将上述内容用于商业或者其他非法用途,否则产生的一切后果自负,本站信息来自网络,版权争议问题与本站无关,您必须在下载后的24小时之内从您的电脑中彻底删除上述信息,如有问题请通过邮件与我们联系。

快速回复 客服 返回顶部 返回列表