Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
H
hilo-common
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
hujiebin
hilo-common
Commits
2e73e8c5
Commit
2e73e8c5
authored
Mar 24, 2023
by
hujiebin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
feat:调高最大连接数
parent
46669f1f
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
28 additions
and
2 deletions
+28
-2
mysql.go
resource/mysql/mysql.go
+2
-2
sync_group_power_name.go
script/sync_group_power_name.go
+26
-0
No files found.
resource/mysql/mysql.go
View file @
2e73e8c5
...
...
@@ -51,8 +51,8 @@ func init() {
if
d
,
err
:=
Db
.
DB
();
err
==
nil
{
d
.
SetConnMaxLifetime
(
time
.
Minute
*
30
)
// 连接可复用的最大时间。
d
.
SetMaxIdleConns
(
50
)
// 空闲连接数
d
.
SetMaxOpenConns
(
50
)
// 最大连接数
d
.
SetMaxIdleConns
(
50
0
)
// 空闲连接数
d
.
SetMaxOpenConns
(
50
0
)
// 最大连接数
if
err
:=
d
.
Ping
();
err
!=
nil
{
fmt
.
Printf
(
"database ping error %v"
,
err
)
}
...
...
script/sync_group_power_name.go
0 → 100644
View file @
2e73e8c5
package
main
import
(
"git.hilo.cn/hilo-common/script/model"
"git.hilo.cn/hilo-common/script/mysql"
)
func
main
()
{
var
powerOwners
[]
model
.
GroupPowerUser
if
err
:=
mysql
.
ProdReadOnlyDB
.
Model
(
model
.
GroupPowerUser
{})
.
Where
(
"role = 2"
)
.
Find
(
&
powerOwners
)
.
Error
;
err
!=
nil
{
panic
(
err
)
}
for
_
,
owner
:=
range
powerOwners
{
var
groupInfo
model
.
GroupInfo
if
err
:=
mysql
.
ProdReadOnlyDB
.
Model
(
model
.
GroupInfo
{})
.
Where
(
"owner = ?"
,
owner
.
UserId
)
.
First
(
&
groupInfo
)
.
Error
;
err
!=
nil
{
continue
}
if
owner
.
GroupPowerId
<=
0
{
panic
(
"0 powerId"
)
}
if
err
:=
mysql
.
ProdWriteDB
.
Model
(
model
.
GroupPower
{})
.
Where
(
"id = ?"
,
owner
.
GroupPowerId
)
.
UpdateColumn
(
"name"
,
groupInfo
.
Name
)
.
Error
;
err
!=
nil
{
panic
(
err
)
}
//break
}
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment