加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
connection_test.go 836 Bytes
一键复制 编辑 原始数据 按行查看 历史
董咚懂咚 提交于 2020-01-11 23:46 . 初始化
package fdfs_client
import (
"fmt"
"testing"
)
func getConn(pool *ConnectionPool) {
conn, err := pool.Get()
defer func() {
if conn != nil {
conn.Close()
}
}()
if err != nil {
fmt.Printf("get conn error:%s\n", err)
}
}
func TestGetConnection(t *testing.T) {
hosts := []string{"10.0.1.32"}
port := 22122
minConns := 10
maxConns := 150
pool, err := NewConnectionPool(hosts, port, minConns, maxConns)
if err != nil {
t.Error(err)
return
}
for i := 0; i < 100; i++ {
go getConn(pool)
}
}
func BenchmarkGetConnection(b *testing.B) {
hosts := []string{"10.0.1.32"}
port := 22122
minConns := 10
maxConns := 150
pool, err := NewConnectionPool(hosts, port, minConns, maxConns)
if err != nil {
b.Error(err)
return
}
b.StopTimer()
b.StartTimer()
for i := 0; i < 10000; i++ {
go getConn(pool)
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化