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
Currently if a request triggers N findOneById(123) calls (all with the same id), and the cache is empty, there will be N calls to cache.set(123, doc). It would be nice if we could deduplicate that, like DataLoader memoizes .load
The text was updated successfully, but these errors were encountered:
Currently if a request triggers N
findOneById(123)
calls (all with the same id), and the cache is empty, there will be N calls tocache.set(123, doc)
. It would be nice if we could deduplicate that, like DataLoader memoizes.load
The text was updated successfully, but these errors were encountered: