implement QuantumKVCache.setMany and QuantumKVCache.seleteMany

This commit is contained in:
Hazelnoot 2025-06-05 14:28:19 -04:00
parent 46a6612dc0
commit 207abaff88
7 changed files with 201 additions and 51 deletions

View file

@ -44,8 +44,6 @@ export class UserRenoteMutingService {
id: In(mutings.map(m => m.id)),
});
await Promise.all(Array
.from(new Set(mutings.map(m => m.muterId)))
.map(muterId => this.cacheService.renoteMutingsCache.delete(muterId)));
await this.cacheService.renoteMutingsCache.deleteMany(mutings.map(m => m.muterId));
}
}