91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

怎么用go配置mysql連接池

發布時間:2021-12-04 11:50:11 來源:億速云 閱讀:179 作者:iii 欄目:云計算

這篇文章主要講解了“怎么用go配置mysql連接池”,文中的講解內容簡單清晰,易于學習與理解,下面請大家跟著小編的思路慢慢深入,一起來研究和學習“怎么用go配置mysql連接池”吧!

go配置mysql連接池

  • mysql配置文檔

  • max-connections=10000

  • 代碼

  • orm

1.ab 發起并發請求測試

  • -c: 并發量100

  • -n: 總請求量300

?  ~ ab -c 100 -n 300 "http://localhost:8080/pool"
This is ApacheBench, Version 2.3 <$Revision: 1826891 $>
Copyright 1996 Adam Twiss, Zeus Technology Ltd, http://www.zeustech.net/
Licensed to The Apache Software Foundation, http://www.apache.org/

Benchmarking localhost (be patient)
Completed 100 requests
Completed 200 requests
Completed 300 requests
Finished 300 requests


Server Software:
Server Hostname:        localhost
Server Port:            8080

Document Path:          /pool
Document Length:        304 bytes

Concurrency Level:      100
Time taken for tests:   4.073 seconds
Complete requests:      300
Failed requests:        0
Total transferred:      128400 bytes
HTML transferred:       91200 bytes
Requests per second:    73.66 [#/sec] (mean)
Time per request:       1357.601 [ms] (mean)
Time per request:       13.576 [ms] (mean, across all concurrent requests)
Transfer rate:          30.79 [Kbytes/sec] received

Connection Times (ms)
              min  mean[+/-sd] median   max
Connect:        0    2   2.2      1       8
Processing:  1001 1012   8.2   1010    1036
Waiting:     1001 1012   8.1   1010    1036
Total:       1002 1014   9.5   1012    1043

Percentage of the requests served within a certain time (ms)
  50%   1012
  66%   1016
  75%   1019
  80%   1021
  90%   1031
  95%   1035
  98%   1039
  99%   1040
 100%   1043 (longest request)
?  ~

2.PoolHandler 中觸發sql查詢

  • 設置空閑連接為10個

  • 最大可以打開的連接為10個 mysql.conf中可以修改最大連接數.

db/db.go

	sqlDB.SetMaxIdleConns(10)
	// SetMaxOpenConns 設置打開數據庫連接的最大數量。
	sqlDB.SetMaxOpenConns(10)
	// SetConnMaxLifetime 設置了連接可復用的最大時間。
	sqlDB.SetConnMaxLifetime(time.Hour)

controller/pool.go

func PoolHandler(c *gin.Context) {
	time.Sleep(time.Second)
	var user model.User
	tx := db.DB.Raw("SELECT id, name, age FROM users WHERE name = ? limit 1", "D42").Scan(&user)
	if tx.Error != nil {
		panic(tx.Error)
	}
	logger.Debugf("raw sql id:%v name:%v age:%v", user.ID, user.Name, user.Age)
	c.JSON(200, user)
}

3.查看測試過程中請求mysql創建的請求

SHOW PROCESSLIST;
Id	User	Host	db	Command	Time	State	Info
8	root	localhost:51148	demo_go	Query	0	starting	SHOW PROCESSLIST
900	root	localhost:64598	demo_go	Sleep	0		
901	root	localhost:64754	demo_go	Sleep	0		
902	root	localhost:64755	demo_go	Sleep	0		
903	root	localhost:64756	demo_go	Sleep	0		
904	root	localhost:64757	demo_go	Sleep	0		
905	root	localhost:64758	demo_go	Sleep	0		
906	root	localhost:64759	demo_go	Sleep	0		
907	root	localhost:64760	demo_go	Sleep	0		
908	root	localhost:64761	demo_go	Sleep	0		
909	root	localhost:64762	demo_go	Sleep	0		

感謝各位的閱讀,以上就是“怎么用go配置mysql連接池”的內容了,經過本文的學習后,相信大家對怎么用go配置mysql連接池這一問題有了更深刻的體會,具體使用情況還需要大家實踐驗證。這里是億速云,小編將為大家推送更多相關知識點的文章,歡迎關注!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

许昌市| 曲沃县| 安达市| 西畴县| 钦州市| 朝阳县| 陕西省| 余江县| 巴楚县| 临澧县| 湟中县| 平度市| 和硕县| 定兴县| 龙海市| 涪陵区| 香格里拉县| 正定县| 奉化市| 岳西县| 阜南县| 贵溪市| 珲春市| 闽侯县| 松江区| 安吉县| 古交市| 迭部县| 江门市| 枣庄市| 固阳县| 东莞市| 含山县| 玛沁县| 邓州市| 聂拉木县| 衡山县| 任丘市| 德州市| 化隆| 徐州市|