golang slice性能分析

Posted 51reboot运维开发

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了golang slice性能分析相关的知识,希望对你有一定的参考价值。

点击上方 “蓝字” 关注我们哦!


golang 在 gc 这块的做得比较弱,频繁地申请和释放内存会消耗很多的资源。另外 slice 使用数组实现,有一个容量和长度的问题,当 slice 的容量用完再继续添加元素时需要扩容,而这个扩容会把申请新的空间,把老的内容复制到新的空间,这是一个非常耗时的操作。有两种方式可以减少这个问题带来的性能开销:


  1. 在 slice 初始化的时候设置 capacity(但更多的时候我们可能并不知道 capacity 的大小)

  2. 复用 slice


下面就针对这两个优化设计了如下的 benchmark,代码在: 

https://github.com/hatlonely/hellogolang/blob/master/internal/buildin/slice_test.go


1.BenchmarkAppendWithoutCapacity-8                    100      21442390 ns/op
2.BenchmarkAppendWithCapLessLen10th-8                  100      18579700 ns/op
3.BenchmarkAppendWithCapLessLen3th-8                   100      13867060 ns/op
4.BenchmarkAppendWithCapEqualLen-8                    200       6287940 ns/op
5.BenchmarkAppendWithCapGreaterLen10th-8                100      18692880 ns/op
6.BenchmarkAppendWithoutCapacityReuse-8                 300       5014320 ns/op
7.BenchmarkAppendWithCapEqualLenReuse-8                 300       4821420 ns/op
8.BenchmarkAppendWithCapGreaterLen10thReuse-8             300       4903230 ns/op


主要结论:


  1. 在已知 capacity 的情况下,直接设置 capacity 减少内存的重新分配,有效提高性能

  2. capacity < length,capacity 越接近 length,性能越好

  3. capacity > lenght,如果太大,反而会造成性能下降,这里当 capacity > 10 * length 时,与不设置 capacity 的性能差不太多

  4. 多次使用复用同一块内存能有效提高性能


转载请注明出处 

本文链接:http://hatlonely.github.io/2018/01/18/golang slice性能分析/


春节前报名专享价【仅限春节前】

招生课程:

  • Python 实战班第 18 期

  • 自动化运维课程第 7 期

  • golang 课程第 3 期

  • 架构师班第 7 期


分享方式:

  • Golang 技术交流群 426582602

  • Python 交流群 365534424 / 238757010


咨询方式:

QQ(1):979950755    小月   

QQ(2):279312229    ada   

WeChat : 1902433859   小月

WeChat : 1251743084   小单



点击【阅读原文】即可跳转

以上是关于golang slice性能分析的主要内容,如果未能解决你的问题,请参考以下文章

golang slice性能分析

Golang slice源码分析

golang 中 怎么实现slice 删除指定的元素

由浅入深聊聊Golang的slice

golang - 如何获得错误“已评估但未使用”

golang goroutine例子[golang并发代码片段]