Rust性能相关资料 2020-07-23 505 words 2 mins read 性能调优相关 配置 export RUSTFLAGS='-g -C target-cpu=native --emit=asm' [profile.release] #opt-level = 3 #debug=true codegen-units = 1 lto = "fat" 其他 https://www.youtube.com/watch?v=d2ZQ9-4ZJmQ&t=35s Back to fundamentals Read more..
从零开始编写一个库到crates中心 2020-06-29 554 words 2 mins read 注册账号 https://crates.io/ 它暂时只能用 Github 登录 获取 token 注册成功并登录后, 进入 Account Settings Read more..
Rust编程风格资料 2020-06-28 14 words 1 min read Rust 官方相关文档 https://rust-lang.github.io/api-guidelines/about.html Libra 相关文档 https://developers.libra.org/docs/community/coding-guidelines Read more..
<Rust权威指南>学习笔记 2020-06-19 5940 words 12 mins read 效率 离线本地文档 rustup doc 只检查能否编译(相对 cargo build 更快): cargo check 构建 Read more..
Java中TLS及HTTPS学习 2020-06-10 819 words 2 mins read HTTPS 在 Java 中连接 HTTPS 示例代码 @Test public void testHandshake() throws Exception { URL url = new URL("https://www.google.com"); HttpsURLConnection conn = (HttpsURLConnection) url.openConnection(); conn.getInputStream(); } Read more..
Java字符串及常量池 2020-06-02 470 words 1 min read 基于Mac 和 JDK 1.8 统计 String 对象相关信息 # 导出当前内存快照 jmap -dump:format=b,file=/tmp/java-app-${PID}.hprof ${PID} 然 Read more..
<深入理解JVM字节码>读书笔记 2020-05-25 4928 words 10 mins read class 文件结构 u1 表示 1 字节无符号 u2 表示 2 字节无符号 u4 表示 4 字节无 Read more..
JDK9及之后的统一GC日志格式 2020-05-22 33 words 1 min read JDK9及之后的日志与之前的对比 官方文档 : https://docs.oracle.com/javase/9/tools/java.htm#JSWOR624 图片来源: https://blog.gceasy.io/2017/10/17/43-gc-logging-flags-removed-in-java-9/ 常用 Read more..
<C程序设计 现代方法>笔记 2020-05-15 26992 words 54 mins read C 的优缺点 底层语言 小型语言 包容性语言 优点 高效 可移植 功能强大 灵 Read more..
Strace使用 2020-05-06 127 words 1 min read 官网 https://strace.io/ 使用示例 统计各系统调用 strace -c -f -e trace=all -p 进程PID -o output.data usecs/call : 表 Read more..
Java查看Old代对象具体信息 2020-04-21 200 words 1 min read 开启 GC 日志 java -XX:+PrintGCDetails -XX:+HeapDumpBeforeFullGC -XX:+PrintHeapAtGC 得如如下类似日志 [PSYoungGen: 611840K->992K(612352K)] 1260846K->650606K(1308672K), 0.0047655 secs] [Times: user=0.03 sys=0.00, real=0.01 secs] Heap after GC Read more..
<Hands on Data Analysis With Pandas>读书 2020-04-01 10179 words 21 mins read Anaconda 多环境 # 查看所有环境 conda info -e # 查看当前环境详细信息 conda info # 创建 Read more..
Logback杂项 2020-03-30 298 words 1 min read 转换词 http://logback.qos.ch/manual/layouts.html#conversionWord MDC 用来在日志中映射诊断上下文信息 在 xml 中配置 <appender name="CONSOLE" class="ch.qos.logback.core.ConsoleAppender"> <layout> <Pattern>%X{client} Read more..