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 3e4d5aef5e
commit 91100f94b5

View file

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