Posts
All the articles I've posted.
java 使用lua script
Posted on:November 30, 2022 at 09:32 AM## 相关阅读 - https://rtmsoft.me/Lettuce%E8%B0%83%E7%94%A8Lua%E8%84%9A%E6%9C%AC.html - https://github.
springboot 请求流程
Posted on:November 29, 2022 at 01:15 PM## 背景 了解java里面`spring boot` 一个http请求的生命周期 ### tomcat 启动 ``` initialize:108, TomcatWebServer (or
javac
Posted on:November 29, 2022 at 01:06 PM## 背景 - 了解java 编译过程 - 使用java的module调用javac ## java的编译命令 在java jdk9 开始,拥有了`module` 系统 ,jdk里面内部的库也
xid equal to close_xid
Posted on:November 21, 2022 at 01:39 PM## 背景 线上环境写入clickhouse的时候出现错误`xid equal to close_xid` , 只报错一次 ,后续就好了 ``` returned error: Code: 99
jdk 反汇编
Posted on:November 16, 2022 at 01:31 PM## 背景 很多时候可以通过java 命令打印反汇编信息 ## 相关命令 jvm参数: HotSpot options (with an -XX: prefix on the command
zookeeper connetion loss
Posted on:November 9, 2022 at 09:49 AM## 背景 ``` returned error: Code: 999, e.displayText() = DB::Exception: Cannot allocate block number
cpp_flag
Posted on:October 24, 2022 at 12:29 AM## 背景 编译c++ 时候需要了解编译过程 ## cmake 添加c++ flag 当我们用`g++`编译一个程序的时候,经常会有些警告或者error。这时候,会弹出对应的警告和error,举
jdk 堆栈
Posted on:September 21, 2022 at 01:25 PM## 背景 想了解jdk的的实现和php有什么不一样。 ## 堆栈 jdk 会将opcode 生成对应的汇编代码,生成汇编的代码如下: ``` (gdb) where #0 Abstract
jdk编译
Posted on:September 20, 2022 at 07:42 AM## 第一步 拉取代码 ``` git clone https://github.com/openjdk/jdk.git ``` </br> ## 第二步 本地版本: 我本地的
java thread local 初始化时机
Posted on:September 11, 2022 at 09:34 AM## 背景 java 的spring boot 不少地方用到了利用java 的thread local map 来实现线程变量隔离。 想要理解java的相关内容。 ## 实现 核心就在于每次创建