perf: fix caching (#8660)

The cache implementation did previously not store the results of the
computation and was thus not a cache at all. This can cause a significant
number of database queries each time someone with a large number of
followers does something that causes an activity to be federated.
This commit is contained in:
Johann150 2022-05-14 06:28:27 +02:00 committed by GitHub
parent c5699fae53
commit 89c5fd0931
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -48,6 +48,7 @@ export class Cache<T> {
// Cache MISS
const value = await fetcher();
this.set(key, value);
return value;
}