• 授权协议:GPL
  • 开发厂商:-
  • 软件语言:Google Go
  • 更新日期:2017-06-26
gls

golang 语言目前唯一的高性能 goroutine local storage 实现,每秒可以完成数百万次Get/Set。

gls Goroutine 本地存储库 项目简介

golang 语言目前唯一的高性能 goroutine local storage 实现,每秒可以完成数百万次Get/Set。OperatePerformanceBenchmark_Goid5.30 ns/opBenchmark_Set271 ns/opBenchmark_Get155 ns/opBenchmark_Set_4Threads129 ns/opBenchmark_Get_4Threads58.6 ns/op 使用起来极为简单:import "github.com/yyzybb537/gls"

// 设置协程局部变量
gls.Set("Value", 1)

// 获取协程局部变量
var i int = gls.Get("Value").(int)

// 协程退出时使用Cleanup清除相关资源
defer Cleanup() 

gls Goroutine 本地存储库 评论内容