Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
H
hilo-group
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-group
Commits
eb5462f8
Commit
eb5462f8
authored
Aug 18, 2023
by
hujiebin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fix:batchGet
parent
5522be36
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
vip.go
domain/model/user_m/vip.go
+4
-4
user_test.go
test/user_test.go
+1
-1
No files found.
domain/model/user_m/vip.go
View file @
eb5462f8
...
...
@@ -68,10 +68,7 @@ func BatchGetVips(userIds []uint64) (map[uint64]*int64, error) {
end
=
len
(
userIds
)
}
start
:=
0
for
end
<=
len
(
userIds
)
{
if
end
>
len
(
userIds
)
{
end
=
len
(
userIds
)
}
for
start
<
len
(
userIds
)
{
tmp
:=
make
([]
UserVip
,
0
)
err
:=
mysql
.
Db
.
Where
(
"user_id IN ?"
,
userIds
[
start
:
end
])
.
Find
(
&
tmp
)
.
Error
if
err
!=
nil
{
...
...
@@ -84,6 +81,9 @@ func BatchGetVips(userIds []uint64) (map[uint64]*int64, error) {
}
start
+=
500
end
+=
500
if
end
>
len
(
userIds
)
{
end
=
len
(
userIds
)
}
//mylogrus.MyLog.Infof("BatchGetVips start:%v-end:%v", start, end)
}
...
...
test/user_test.go
View file @
eb5462f8
...
...
@@ -18,7 +18,7 @@ func TestGetUserMap(t *testing.T) {
func
TestGetUserVipMap
(
t
*
testing
.
T
)
{
var
userIds
[]
uint64
for
i
:=
0
;
i
<
1
500
;
i
++
{
for
i
:=
0
;
i
<
1
0502
;
i
++
{
userIds
=
append
(
userIds
,
7642
)
}
res
,
err
:=
user_m
.
BatchGetVips
(
userIds
)
...
...
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