Posts
All the articles I've posted.
clickhouse jdbc 1002 error
Posted on:June 14, 2023 at 09:51 AM## 背景 生产环境会有下面错误: `Unknown error 1002, server ClickHouseNode` , clickhouse使用的是http的协议 ``` Caused
why bison can be find in cmake
Posted on:June 9, 2023 at 07:19 PM## 背景 我添加cmake的时候,经常看看为什么`find_package(bison)`可以默认找到 ## 原因 cmake 有默认的xxx.cmake文件 ``` https://cmake
Invalid JSON text in argument 2 in mysql8
Posted on:June 7, 2023 at 02:17 PM## 背景 有个`update_rules`字段是json类型 ``` {"type": "once", "values": []} ``` 想用JSON_CONTAINS提取中间的once内容,
Payload value must not be empty
Posted on:June 6, 2023 at 09:48 AM## 背景 生产环境rabbitmq遇到错误:`Payload value must not be empty` ``` Caused by: org.springframework.messa
WFST 和lucene 和fst
Posted on:June 5, 2023 at 07:06 PM## 在WFST(Weighted Finite State Transducer,加权有限状态转换器)中,"All Pairs Shortest Path"(APSP)算法用于计算任意两个状态之间
java 线程池
Posted on:May 27, 2023 at 08:48 PM## 背景 了解java源码包里面线程池的细节 ## 线程池 线程池是管理一堆线程的对象。对于线程池来说,不同线程池主要是他们创建、调度、销毁的的各种策略的不一样 ## 基础类 ### `
fst 结构
Posted on:May 25, 2023 at 08:05 PM## 背景 了解lucene 的fst结构 ## 核心函数 freeezeTail -> compileNode ``` private void freezeTail(int p
java 数组声明位置区别
Posted on:May 24, 2023 at 07:20 PM## 背景 ```java String inputValues[] = {"cat", "dog", "dogs"}; ``` 当我声明一个数组,方括号在右边的时候, idea会有个很小警
mysql bigint 映射
Posted on:May 18, 2023 at 07:54 PM## 相关阅读 - https://dev.mysql.com/doc/c-api/8.0/en/c-api-prepared-statement-type-codes.html
flink 编译
Posted on:May 16, 2023 at 07:50 PM## 背景 了解flink的使用 ## 编译 下载代码: ``` git clone https://github.com/apache/flink.git cd flink ## 编译 .