目录
使用场景
一句话总结:保存和复用临时对象,减少内存分配,降低GC压力 是可伸缩的,也是并发安全的,其大小仅受限于内存大小。 用于存储那些被分配了但是没有使用,而未来可能会使用的值。这样就可以不用再次经过内存分配,可直接复用已有对象,减轻GC的压力,从而提升系统性能。
使用方法
声明对象池
- type Student struct {
- Name string
- Age int32
- Remark [1024]byte
- }
- func main() {
- var studentPool = sync.Pool{
- New: func() interface{} {
- return new(Student)
- },
- }
- }
复制代码 Get & Put
- type Student struct {
- Name string
- Age int32
- Remark [1024]byte
- }
- var buf, _ = json.Marshal(Student{Name: "lxy", Age: 18})
- func Unmarsh() {
- var studentPool = sync.Pool{
- New: func() interface{} {
- return new(Student)
- },
- }
- stu := studentPool.Get().(*Student)
- err := json.Unmarshal(buf, stu)
- if err != nil {
- return
- }
- studentPool.Put(stu)
- }
复制代码
- 用于从对象池中获取对象,因为返回值是,因此需要类型转换
- 则是在对象使用完毕之后,返回对象池
性能测试
以下是性能测试的代码: - package benchmem
- import (
- "encoding/json"
- "sync"
- "testing"
- )
- type Student struct {
- Name string
- Age int32
- Remark [1024]byte
- }
- var buf, _ = json.Marshal(Student{Name: "lxy", Age: 18})
- var studentPool = sync.Pool{
- New: func() interface{} {
- return new(Student)
- },
- }
- func BenchmarkUnmarshal(b *testing.B) {
- for n := 0; n < b.N; n++ {
- stu := &Student{}
- json.Unmarshal(buf, stu)
- }
- }
- func BenchmarkUnmarshalWithPool(b *testing.B) {
- for n := 0; n < b.N; n++ {
- stu := studentPool.Get().(*Student)
- json.Unmarshal(buf, stu)
- studentPool.Put(stu)
- }
- }
复制代码输入以下命令: - go test -bench . -benchmem
复制代码以下是性能测试的结果: - goos: windowsgoarch: amd64 pkg: ginTest cpu: 11th Gen Intel(R) Core(TM) i5-1135G7 @ 2.40GHzBenchmarkUnmarshal-8 17004 74103 ns/op 1392 B/op 8 allocs/opBenchmarkUnmarshalWithPool-8 17001 71173 ns/op 240 B/op 7 allocs/opPASSok ginTest 3.923s
复制代码在这个例子中,因为 Student 结构体内存占用较小,内存分配几乎不耗时间。而标准库 json 反序列化时利用了反射,效率是比较低的,占据了大部分时间,因此两种方式最终的执行时间几乎没什么变化。但是内存占用差了一个数量级,使用了 后,内存占用仅为未使用的 ,对 GC 的影响就很大了。
我们甚至在 的源码里面也使用了 进行性能优化!
到此这篇关于GoLang sync.Pool简介与用法的文章就介绍到这了,更多相关GoLang sync.Pool内容请搜索晓枫资讯以前的文章或继续浏览下面的相关文章希望大家以后多多支持晓枫资讯!
免责声明:如果侵犯了您的权益,请联系站长,我们会及时删除侵权内容,谢谢合作! |