golang 幾種字串的連線方式
最近在做效能優化,有個函式裡面的耗時特別長,看裡面的操作大多是一些字串拼接的操作,而字串拼接在 golang 裡面其實有很多種實現。
實現方法
1. 直接使用運算子
func BenchmarkAddStringWithOperator(b *testing.B) {
hello := "hello"
world := "world"
for i := 0; i < b.N; i++ {
_ = hello + "," + world
}
}
func BenchmarkAddMoreStringWithOperator(b *testing.B) {
hello := "hello"
world := "world"
for i := 0; i < b.N; i++ {
var str string
for i := 0; i < 100; i++ {
str += hello + "," + world
}
}
}
golang 裡面的字串都是不可變的,每次運算都會產生一個新的字串,所以會產生很多臨時的無用的字串,不僅沒有用,還會給 gc 帶來額外的負擔,所以效能比較差
2. fmt.Sprintf()
func BenchmarkAddStringWithSprintf(b *testing.B) {
hello := "hello"
world := "world"
for i := 0; i < b.N; i++ {
_ = fmt.Sprintf("%s,%s", hello, world)
}
}
內部使用 []byte
實現,不像直接運算子這種會產生很多臨時的字串,但是內部的邏輯比較複雜,有很多額外的判斷,還用到了 interface
,所以效能也不是很好
3. strings.Join()
func BenchmarkAddStringWithJoin(b *testing.B) {
hello := "hello"
world := "world"
for i := 0; i < b.N; i++ {
_ = strings.Join([]string{hello, world}, ",")
}
}
join 會先根據字串陣列的內容,計算出一個拼接之後的長度,然後申請對應大小的記憶體,一個一個字串填入,在已有一個陣列的情況下,這種效率會很高,但是本來沒有,去構造這個資料的代價也不小
4. buffer.WriteString()
func BenchmarkAddStringWithBuffer(b *testing.B) {
hello := "hello"
world := "world"
for i := 0; i < b.N; i++ {
var buffer bytes.Buffer
buffer.WriteString(hello)
buffer.WriteString(",")
buffer.WriteString(world)
_ = buffer.String()
}
}
func BenchmarkAddMoreStringWithBuffer(b *testing.B) {
hello := "hello"
world := "world"
for i := 0; i < b.N; i++ {
var buffer bytes.Buffer
for i := 0; i < 100; i++ {
buffer.WriteString(hello)
buffer.WriteString(",")
buffer.WriteString(world)
}
_ = buffer.String()
}
}
這個比較理想,可以當成可變字元使用,對記憶體的增長也有優化,如果能預估字串的長度,還可以用 buffer.Grow()
介面來設定 capacity
測試結果
BenchmarkAddStringWithOperator-8 50000000 28.4 ns/op 0 B/op 0 allocs/op
BenchmarkAddStringWithSprintf-8 10000000 234 ns/op 48 B/op 3 allocs/op
BenchmarkAddStringWithJoin-8 30000000 56.2 ns/op 16 B/op 1 allocs/op
BenchmarkAddStringWithBuffer-8 20000000 86.0 ns/op 112 B/op 1 allocs/op
BenchmarkAddMoreStringWithOperator-8 100000 14295 ns/op 58896 B/op 100 allocs/op
BenchmarkAddMoreStringWithBuffer-8 300000 4551 ns/op 5728 B/op 7 allocs/op
這個是在我的自己 Mac 上面跑的結果,go 版本 go version go1.8 darwin/amd64
,這個結果僅供參考,還是要以實際生產環境的值為準,程式碼在:<https://github.com/hatlonely/hellogolang/blob/master/internal/buildin/string_test.go>
主要結論
- 在已有字串陣列的場合,使用
strings.Join()
能有比較好的效能 - 在一些效能要求較高的場合,儘量使用
buffer.WriteString()
以獲得更好的效能 - 較少字串連線的場景下效能最好,而且程式碼更簡短清晰,可讀性更好
- 如果需要拼接的不僅僅是字串,還有數字之類的其他需求的話,可以考慮
fmt.Sprintf
參考連結
go 語言字串拼接效能分析: <http://herman.asia/efficient-string-concatenation-in-go>
> 轉載請註明出處 > 本文連結:http://hatlonely.com/2018/01/24/golang-/字串的幾種連線方式
更多原創文章乾貨分享,請關注公眾號
- 加微信實戰群請加微信(註明:實戰群):gocnio
相關文章
- PHP 技術卡片 - 字串連線的幾種方式PHP字串
- Java裡連線字串的幾種方式以及優缺點Java字串
- 幾種表的連線方式(SQL)SQL
- Golang 連線池的幾種實現案例Golang
- VMware連線網路的幾種方式
- mybatis連線資料庫的幾種方式MyBatis資料庫
- 字串連線哪一種方式最高效字串
- Golang語言排序的幾種方式Golang排序
- Spring連線資料庫的幾種常用的方式Spring資料庫
- 各種連線資料庫的連線字串資料庫字串
- 117 遠端連線mysql資料庫的幾種方式MySql資料庫
- zt_virtualbox幾種網路network連線方式
- golang 字串修改方式Golang字串
- SQL中的四種連線方式SQL
- HTTP代理的兩種連線方式HTTP
- Oracle的三種表連線方式Oracle
- Python字串連線的5種方法Python字串
- 【SQL】表連線七種方式SQL
- flask返回資料的幾種方式(字串,json,元祖)Flask字串JSON
- iSCSI儲存的3種連線方式
- JDBC連線各種資料庫的字串JDBC資料庫字串
- oracle資料庫透過sqlplus連線的幾種方式介紹Oracle資料庫SQL
- Python 連線 MySQL 的幾種姿勢PythonMySql
- 批次殺死MySQL連線的幾種方法MySql
- Sqlplus 多種連線方式SQL
- Linux網路連線的三種方式Linux
- win7 64 VC++ ado方式連線access 連線字串Win7C++字串
- 伺服器與磁碟陣列連線的幾種方式_sas_iscsi_fc_hba伺服器陣列
- oracle sql內連線_左(右)連線_全外連線_幾種寫法OracleSQL
- 幾種常見的資料庫連線方法資料庫
- php連線mysql資料庫的幾種方法PHPMySql資料庫
- kubernetes pod內抓包,telnet檢查網路連線的幾種方式
- 各種表連線方式對比分析
- 3種主要表連線方式對比
- vmware中三種網路連線方式
- MySQL client客戶端的四種連線方式MySqlclient客戶端
- 【SQL 效能優化】表的三種連線方式SQL優化
- 【轉載】JDBC連線各種資料庫的字串JDBC資料庫字串