摘要: func (sp *scrapePool) sync(targets []*Target) { // 加锁 sp.mtx.Lock() defer sp.mtx.Unlock() var ( // target 标记 uniqueTargets = map[uint64]struct{}{} // 阅读全文
posted @ 2024-10-16 17:04 技术颜良 阅读(3) 评论(0) 推荐(0) 编辑
摘要: go语言中http.transport的请求过滤与拦截技巧与应用 1.引言在Go语言的http包中,http.Transport作为底层的HTTP传输层实现,提供了强大的功能,可以用于发起HTTP请求。本文将重点介绍如何使用http.Transport实现请求过滤和拦截的技巧及其应用。 2.请求过滤 阅读全文
posted @ 2024-10-16 16:28 技术颜良 阅读(49) 评论(0) 推荐(0) 编辑