在Android中测量Firebase带宽

时间:2016-02-05 20:34:48

标签: java android firebase bandwidth

我的应用程序每天发送大约5mb,因为我的计算结果应该接近100kb。所以某些地方出了问题,或者我误解了什么。是否有任何方法可以记录火星基础数据的大小进出?否则,还有其他调试思路吗?

每隔2分钟就会开火:

exec*(3)

数据通常如下:

 long nowMili = now.getTimeInMillis();
 double lat = location.getLatitude();
 double lng = location.getLongitude();
 Map<String, String> locationRec = new HashMap<>();
 locationRec.put("time", String.valueOf(nowMili));
 locationRec.put("lat", String.valueOf(lat));
 locationRec.put("lng", String.valueOf(lng));
 Firebase locationRecRef = new Firebase(FB.FBRef + "/locator/" + User.currentGroup + "/"  + FB.uid);
 locationRecRef.setValue(locationRec);

0 个答案:

没有答案