Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
PaoPao
/
serviceWork
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
Commit
5a471c60
...
5a471c6071834d7640ce3f8acec3eaca787c07f2
authored
2024-05-27 16:03:31 +0800
by
杨俊
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
fix(develop): 修复报错
1 parent
91722542
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 additions
and
1 deletions
app/Http/Container/AppSection/Controllers/IndexController.php
app/Http/Container/AppSection/Controllers/IndexController.php
View file @
5a471c6
...
...
@@ -90,7 +90,7 @@ public function bandList(Request $request)
$data
=
$query
->
get
([
'id'
]);
//插入有序集合中
Redis
::
client
()
->
del
(
$key
);
Redis
::
client
()
->
zAdd
(
$key
,
...
$data
->
map
(
fn
(
Project
$item
)
=>
[
random_int
(
50
,
200
),
$item
->
getKey
()])
->
flatten
()
->
toArray
());
Redis
::
client
()
->
zAdd
(
$key
,
...
$data
->
map
(
fn
(
Project
$item
)
=>
[
random_int
(
50
,
200
),
$item
->
getKey
()])
->
flatten
()
->
toArray
()
??
[]
);
Redis
::
client
()
->
expire
(
$key
,
2
*
60
*
60
);
}
$recommendIds
=
Redis
::
client
()
->
zRevRange
(
$key
,
$startIndex
,
$endIndex
);
...
...
Please
register
or
sign in
to post a comment