You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The caches currently work by Mensa; the menus of each mensa are stored in their own file. This has the advantage that mensas can be refreshed concurrently easily without race conditions (which is indeed currently in use). But this makes the start a bit slower, as many small files have to be read out.
Consider having more coarse-grained caches, for example with a CacheService that manages reads / writes to the cache. This could further improve startup performance.
The text was updated successfully, but these errors were encountered:
The caches currently work by Mensa; the menus of each mensa are stored in their own file. This has the advantage that mensas can be refreshed concurrently easily without race conditions (which is indeed currently in use). But this makes the start a bit slower, as many small files have to be read out.
Consider having more coarse-grained caches, for example with a
CacheService
that manages reads / writes to the cache. This could further improve startup performance.The text was updated successfully, but these errors were encountered: