摘要: 转载https://blog.csdn.net/qq_45066628/article/details/146225428 阅读全文
posted @ 2025-06-16 16:22 daniel456 阅读(4) 评论(0) 推荐(0)
摘要: 转自https://blog.csdn.net/wt334502157/article/details/139299432 阅读全文
posted @ 2025-04-02 10:11 daniel456 阅读(9) 评论(0) 推荐(0)
摘要: 以下内容出自于《大数据技术及架构图解实战派》一书。https://zhuanlan.zhihu.com/p/594614116 随着大数据行业的发展,大数据生态圈中相关的技术也在一直迭代进步,希望能通过本文帮助大家快速构建大数据生态圈的完整知识体系。 目前大数据生态圈中的核心技术总结下来如图1所示, 阅读全文
posted @ 2025-03-26 15:59 daniel456 阅读(42) 评论(0) 推荐(0)
摘要: 先说结论:go中所有的函数传参都为值传递 在 Go 语言中,切片(slice)是引用类型,因此在函数调用中传递切片时,实际上是传递了切片的引用(地址),而不是切片的副本。这意味着对传递的切片进行修改会影响原始切片的内容。 当将切片作为函数参数传递时,函数接收的是切片的引用。这使得函数可以访问和修改原 阅读全文
posted @ 2024-06-19 17:44 daniel456 阅读(392) 评论(0) 推荐(0)
摘要: 转自https://mp.weixin.qq.com/s/X8c6ZIJdBFptYA9CRj6wnA 今天小土给大家带来一篇关于 Golang 项目中最简单的优化的文章。原文见 Golang: simple optimization notes[1] 我们这里简单聊一下优化本身,然后我们直接从实际 阅读全文
posted @ 2024-06-19 15:32 daniel456 阅读(23) 评论(0) 推荐(0)
摘要: https://www.infoq.cn/article/c4-architecture-model 阅读全文
posted @ 2024-04-28 10:11 daniel456 阅读(7) 评论(0) 推荐(0)
摘要: 1. EXPLAIN 是什么? MySQL 提供的一个关键字,用于分析查询语句的执行计划。通过执行 EXPLAIN 命令,可以获取查询执行的详细信息,包括使用的索引、表的访问顺序、连接类型和估计的行数等。分析 EXPLAIN 结果可以帮助我们了解查询的性能瓶颈,优化查询语句和索引设计。 下面是分析 阅读全文
posted @ 2024-03-29 15:17 daniel456 阅读(187) 评论(0) 推荐(0)
摘要: https://www.jianshu.com/p/410d70050473 阅读全文
posted @ 2024-03-19 16:40 daniel456 阅读(32) 评论(0) 推荐(0)
摘要: The C4 (Context, Containers, Components, and Code) view model was proposed by Simon Brown, a software architecture consultant and author. He introduce 阅读全文
posted @ 2023-12-29 10:47 daniel456 阅读(1044) 评论(0) 推荐(0)
摘要: https://mp.weixin.qq.com/s/rfbZ79TmZ61lx_JBnwDJMQ# or https://www.cnblogs.com/-wenli/p/12343300.html 阅读全文
posted @ 2023-09-13 21:49 daniel456 阅读(11) 评论(0) 推荐(0)