All posts by Nix.Huang

B树和B+树

5月 7, 2023 |

B树和B+树 B-Tree定义 B-Tree的度n(Degree)=最大的子树个数, 节点元素最大个数n-1, […more]

IP协议和TCP格式

4月 27, 2023 |

IP协议 0 15 31 —————————————— […more]

LVS+keepalived 使用TUN

4月 25, 2023 |

realServer配置 modprobe ipip  #加载ipip模块,生成tunl0 […more]

使用原生HttpServlet来提高压测性能

4月 22, 2023 |

压测hello world的时候,发现spring mvc比HttpServlet的性能下降20%作用 在sp […more]

nginx 建议开启tcp_tw_reuse选项

4月 17, 2023 |

nginx 的每次后端代理请求都会消耗一个临时端口, linux上临时端口时稀缺资源, 最多6万个。 echo […more]

k8s statefulSet实践

3月 27, 2023 |

我使用的是minikube version: v1.28.0,PersistentVolume的storage […more]

org.slf4j.impl.StaticLoggerBinder 找不到

3月 24, 2023 |

Caused by: java.lang.ClassNotFoundException: org.slf4j. […more]

minikube 实践

3月 23, 2023 |

启动集群 minikube start –force –container-runtime=contain […more]

spring boot + vue应用的nginx配置

3月 16, 2023 |

server { listen 80; # server_name用于指定虚拟主机名 server_name […more]

初窥Dockerfile

3月 16, 2023 |

cat Dockerfile

// ‘.’表 […more]