Update packages/backend/src/core/FeaturedService.ts
Co-authored-by: syuilo <Syuilotan@yahoo.co.jp>
This commit is contained in:
parent
7ce7ddfb24
commit
ecfe4717e0
|
|
@ -52,7 +52,7 @@ export class FeaturedService {
|
||||||
`${name}:${currentWindow}`, 0, threshold, 'REV', 'WITHSCORES');
|
`${name}:${currentWindow}`, 0, threshold, 'REV', 'WITHSCORES');
|
||||||
redisPipeline.zrange(
|
redisPipeline.zrange(
|
||||||
`${name}:${previousWindow}`, 0, threshold, 'REV', 'WITHSCORES');
|
`${name}:${previousWindow}`, 0, threshold, 'REV', 'WITHSCORES');
|
||||||
const [currentRankingResult, previousRankingResult] = await redisPipeline.exec().then(result => result ? result.map(r => (r[1] || []) as string[]) : [[], []]);
|
const [currentRankingResult, previousRankingResult] = await redisPipeline.exec().then(result => result ? result.map(r => (r[1] ?? []) as string[]) : [[], []]);
|
||||||
|
|
||||||
const ranking = new Map<string, number>();
|
const ranking = new Map<string, number>();
|
||||||
for (let i = 0; i < currentRankingResult.length; i += 2) {
|
for (let i = 0; i < currentRankingResult.length; i += 2) {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue