好好爱自己!

摘要: 原文:https://medium.com/swlh/go-the-idea-behind-sync-pool-32da5089df72 I encountered a problem in Go Garbage Collection inside a project of mine recentl 阅读全文
posted @ 2021-09-30 23:00 立志做一个好的程序员 阅读(88) 评论(0) 推荐(0) 编辑
摘要: package client import ( "runtime" "sync" "testing" ) type MPool chan interface{} type A struct { s string b int overflow *[2]*[]*string } var p = sync 阅读全文
posted @ 2021-09-30 19:06 立志做一个好的程序员 阅读(82) 评论(0) 推荐(0) 编辑
摘要: 原文:https://blog.csdn.net/qq_34796981/article/details/107964779 格式文件名必须以_test结尾。方法名必须已Benchmark开头。测试方法需要使用 *testing.B。命令行参数输入参数go test -v -bench=. -ben 阅读全文
posted @ 2021-09-30 16:45 立志做一个好的程序员 阅读(245) 评论(0) 推荐(0) 编辑
摘要: 这个例子,理解一下 package main import ( "fmt" "sync" "time" ) // Pool for our struct A var pool *sync.Pool // A dummy struct with a member type A struct { Nam 阅读全文
posted @ 2021-09-30 16:02 立志做一个好的程序员 阅读(86) 评论(0) 推荐(0) 编辑
摘要: 原文:https://www.jianshu.com/p/f0fac45738e6 1. 认识这个词(基础篇) 词:trade-off 英英释义:a balance between two opposing things, that you are willing to accept in orde 阅读全文
posted @ 2021-09-30 15:48 立志做一个好的程序员 阅读(1483) 评论(0) 推荐(0) 编辑
摘要: main.go package main import ( // "sync" ) //// A dummy struct //type Person struct { // Name string //} // //// Initializing pool //var personPool = s 阅读全文
posted @ 2021-09-30 15:20 立志做一个好的程序员 阅读(337) 评论(0) 推荐(0) 编辑
摘要: 原文:https://my.oschina.net/renhc/blog/3162751 在使用 Go module 过程中,随着引入的依赖增多,也许你会发现go.mod文件中部分依赖包后面会出现一个// indirect的标识。这个标识总是出现在require指令中,其中// 与代码的行注释一样表 阅读全文
posted @ 2021-09-30 14:51 立志做一个好的程序员 阅读(999) 评论(0) 推荐(0) 编辑

不断学习创作,与自己快乐相处