1 Star 0 Fork 0

fkil555/gin-extend

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
forked.go 622 Bytes
一键复制 编辑 原始数据 按行查看 历史
fkil555 提交于 2023-09-10 21:31 . gin-extend init
package gcontext
import (
"context"
)
// 派生上下文, 保障框架的并发安全问题
type GEForkedContext struct {
context.Context
}
// 派生协程使用GEContext之前必须调用该方法获取一个派生的context
func WithGEForkedContext(parent context.Context) (ctx *GEForkedContext) {
ctx = &GEForkedContext{
Context: parent,
}
return
}
func (ctx *GEForkedContext) Value(key interface{}) (value interface{}) {
if strKey, ok := key.(string); ok && strKey == "FORK" { // 提供查看fork标记位的能力
value = true
return
}
value = ctx.Context.Value(key) // 否则从父亲取
return
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/fkil555/gin-extend.git
git@gitee.com:fkil555/gin-extend.git
fkil555
gin-extend
gin-extend
v0.0.9

搜索帮助