diff --git a/笔记文件/2.笔记/性能检测平台 临时记录.md b/笔记文件/2.笔记/性能检测平台 临时记录.md index e796e58..b400d10 100644 --- a/笔记文件/2.笔记/性能检测平台 临时记录.md +++ b/笔记文件/2.笔记/性能检测平台 临时记录.md @@ -86,4 +86,37 @@ main函数运行到这里,就可以判断和创建数据库了 三消的,lua初始化相关 -![[Pasted image 20250411154812.png]] \ No newline at end of file +![[Pasted image 20250411154812.png]] + +解析一下,主逻辑脚本; +首先,是收集的结构体 + +![[Pasted image 20250415100528.png]] + +是一个mono的单例,设置上报的时间间隔,是5秒,还有其他声明的变量,例如SkipFrame就是跳过的帧数,FailCheckInterval是发送失败后,间隔多久才开始重新发送,这里设定是60秒 + +![[Pasted image 20250415100730.png]] + +这是获取,对应操作系统的名称 + +![[Pasted image 20250415102109.png]] + +在Update函数里,先跳过上述提及的,5帧,然后才开始采集 + +![[Pasted image 20250415102418.png]] + +这里是检测,上次失败的时间间隔,这里是大于60秒,才会继续重发 + +![[Pasted image 20250415102956.png]] + +这里是,发送网络消息的接口,设置了超时是10秒,然后重发次数,还有失败多次后,设置enable使能为false + +![[Pasted image 20250415103219.png]] + +非常朴素的,获取内存占用相关,这个是不可以直接使用的,因为还使用到,Profiler性能检测的一些接口,后面需要替换成,各原生层的,获取内存的相关接口 + +![[Pasted image 20250415103921.png]] + +这里是,上报拼接的,具体逻辑 + +![[Pasted image 20250415105531.png]] \ No newline at end of file diff --git a/笔记文件/2.笔记/性能检测平台.md b/笔记文件/2.笔记/性能检测平台.md deleted file mode 100644 index 267aaee..0000000 --- a/笔记文件/2.笔记/性能检测平台.md +++ /dev/null @@ -1,3 +0,0 @@ -#go -#unity/日常积累 - diff --git a/笔记文件/2.笔记/日志系统 临时记录.md b/笔记文件/2.笔记/日志系统 临时记录.md index 6f9a8fa..e8399a7 100644 --- a/笔记文件/2.笔记/日志系统 临时记录.md +++ b/笔记文件/2.笔记/日志系统 临时记录.md @@ -127,4 +127,8 @@ history 客户端上报 -![[Pasted image 20250411104809.png]] \ No newline at end of file +![[Pasted image 20250411104809.png]] + +网络发送的逻辑接口,会有重发机制: + +![[Pasted image 20250415101220.png]] \ No newline at end of file diff --git a/笔记文件/2.笔记/灵感_其他.md b/笔记文件/2.笔记/灵感_其他.md index 870a4c7..60329d4 100644 --- a/笔记文件/2.笔记/灵感_其他.md +++ b/笔记文件/2.笔记/灵感_其他.md @@ -281,4 +281,10 @@ IOS:insdzqa7l0qo ``` inspireclient.hummingbird@gmail.com igclient0927 +``` + +三消Adjust识别码 +``` +ios:1jsy93yc5iv4 +android:mnfbn2rq6h34 ``` \ No newline at end of file diff --git a/笔记文件/日记/2025_04_15_星期二.md b/笔记文件/日记/2025_04_15_星期二.md index d943e1d..33a6fc1 100644 --- a/笔记文件/日记/2025_04_15_星期二.md +++ b/笔记文件/日记/2025_04_15_星期二.md @@ -22,6 +22,11 @@ # 今日任务 - [ ] 记得今天要去拿 咖啡快递 +- [x] 申请一下 PerfSight 试用 +- [ ] 彻底解决,震动插件Unable to seek的问题 +- [ ] 添加一下 Adjust的发包还有回包log打印,确定符合设计预期 +- [x] 重新生成一下,安卓aar相关,去掉多余的引用和代码逻辑 +- [ ] 服务器逻辑,创建一个,新的数据库,存放新的表 --- # Journal diff --git a/笔记文件/附件/Pasted image 20250415100528.png b/笔记文件/附件/Pasted image 20250415100528.png new file mode 100644 index 0000000..e32e6a1 Binary files /dev/null and b/笔记文件/附件/Pasted image 20250415100528.png differ diff --git a/笔记文件/附件/Pasted image 20250415100730.png b/笔记文件/附件/Pasted image 20250415100730.png new file mode 100644 index 0000000..a7296f9 Binary files /dev/null and b/笔记文件/附件/Pasted image 20250415100730.png differ diff --git a/笔记文件/附件/Pasted image 20250415101220.png b/笔记文件/附件/Pasted image 20250415101220.png new file mode 100644 index 0000000..6a5af3f Binary files /dev/null and b/笔记文件/附件/Pasted image 20250415101220.png differ diff --git a/笔记文件/附件/Pasted image 20250415102109.png b/笔记文件/附件/Pasted image 20250415102109.png new file mode 100644 index 0000000..5369248 Binary files /dev/null and b/笔记文件/附件/Pasted image 20250415102109.png differ diff --git a/笔记文件/附件/Pasted image 20250415102418.png b/笔记文件/附件/Pasted image 20250415102418.png new file mode 100644 index 0000000..af5a21b Binary files /dev/null and b/笔记文件/附件/Pasted image 20250415102418.png differ diff --git a/笔记文件/附件/Pasted image 20250415102956.png b/笔记文件/附件/Pasted image 20250415102956.png new file mode 100644 index 0000000..1881953 Binary files /dev/null and b/笔记文件/附件/Pasted image 20250415102956.png differ diff --git a/笔记文件/附件/Pasted image 20250415103219.png b/笔记文件/附件/Pasted image 20250415103219.png new file mode 100644 index 0000000..9e3d8ac Binary files /dev/null and b/笔记文件/附件/Pasted image 20250415103219.png differ diff --git a/笔记文件/附件/Pasted image 20250415103921.png b/笔记文件/附件/Pasted image 20250415103921.png new file mode 100644 index 0000000..4d783d6 Binary files /dev/null and b/笔记文件/附件/Pasted image 20250415103921.png differ diff --git a/笔记文件/附件/Pasted image 20250415105531.png b/笔记文件/附件/Pasted image 20250415105531.png new file mode 100644 index 0000000..ca5993c Binary files /dev/null and b/笔记文件/附件/Pasted image 20250415105531.png differ