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
29b6c6ec
...
29b6c6eca58c5ed540990957a229e895332fbe15
authored
2024-05-27 16:08:10 +0800
by
杨俊
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
fix(develop): 修复报错
1 parent
5a471c60
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletions
app/Http/Container/AppSection/Controllers/IndexController.php
app/Http/Container/AppSection/Controllers/IndexController.php
View file @
29b6c6e
...
...
@@ -90,7 +90,12 @@ 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
()
??
[]);
if
(
empty
(
$data
))
{
Redis
::
client
()
->
zAdd
(
$key
,
[]);
}
else
{
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