1 2 3 4 5 ··· 21 下一页

2025年8月26日

安装 Windows下MinGW-w64的安装

摘要: https://zhidao.baidu.com/question/1715840190690171260.html 阅读全文

posted @ 2025-08-26 22:22 木林coder 阅读(8) 评论(0) 推荐(0)

2025年8月19日

高并发-知乎托尼学长

摘要: https://www.zhihu.com/people/xi-you-37-14-40 数据一致性 https://www.zhihu.com/people/xi-you-37-14-40 -性能和一致性不能同时满足,为了性能考虑,通常会采用最终一致性的方案 -掌握缓存和数据库一致性问题,核心问题 阅读全文

posted @ 2025-08-19 18:18 木林coder 阅读(6) 评论(0) 推荐(0)

2025年8月5日

Elasticsearch 高级查询语法

摘要: https://blog.csdn.net/weixin_46203834/article/details/149583120 es入门 https://www.bilibili.com/video/BV1hh411D7sb?spm_id_from=333.788.player.switch&vd_ 阅读全文

posted @ 2025-08-05 16:31 木林coder 阅读(7) 评论(0) 推荐(0)

2025年7月15日

go协程池

摘要: package main import ( "fmt" "sync" "time" ) type Task struct { ID int Run func() error } type Pool struct { taskChan chan Task workerNum int wg sync.W 阅读全文

posted @ 2025-07-15 14:37 木林coder 阅读(5) 评论(0) 推荐(0)

2025年7月13日

tx面试题目

摘要: package main import ( "fmt" "math/rand" "time" ) type Option struct { ID string json:"id" Text string json:"text" } type Question struct { Title strin 阅读全文

posted @ 2025-07-13 16:28 木林coder 阅读(7) 评论(0) 推荐(0)

2025年7月9日

利用反射修改结构体私有字段

摘要: package main import ( "fmt" "reflect" "unsafe" ) type Example struct { privateField string } //kind 大类型:指针,结构体 type 小类型:string,int //非导出字段=私有字段=小写字母开头 阅读全文

posted @ 2025-07-09 16:14 木林coder 阅读(8) 评论(0) 推荐(0)

2025年6月25日

战斗系统

摘要: https://zhuanlan.zhihu.com/c_1886352766663909941 阅读全文

posted @ 2025-06-25 07:57 木林coder 阅读(4) 评论(0) 推荐(0)

2025年6月9日

ubuntu动态IP

摘要: 取消DNS配置还原‌(/etc/resolv.conf) sudo systemctl stop systemd-resolved sudo systemctl disable systemd-resolved sudo rm /etc/resolv.conf # 删除软链接 sudo vim /e 阅读全文

posted @ 2025-06-09 20:38 木林coder 阅读(15) 评论(0) 推荐(0)

2025年6月6日

ubuntu静态IP

摘要: vi /etc/netplan/xxx.yaml network: version: 2 renderer: networkd ethernets: ens33: dhcp4: no addresses: [192.168.xx.xx/24] routes: - to: default via: 1 阅读全文

posted @ 2025-06-06 10:25 木林coder 阅读(10) 评论(0) 推荐(0)

2025年5月26日

PHP依赖注入

摘要: https://blog.csdn.net/qjwcn/article/details/145886226 阅读全文

posted @ 2025-05-26 16:26 木林coder 阅读(10) 评论(0) 推荐(0)

1 2 3 4 5 ··· 21 下一页

导航