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
I'm looking for an equivalent to a feature like this from the cachetools library. For instance, an app could use multiple DB connections to fetch the same data, even though those connections might not have the same image under the hash. Without the ability to exclude the DB connection from the hash key, you'd incur unnecessary cache misses.
The text was updated successfully, but these errors were encountered:
I think this library is meant to be a simple replacement for lru_cache. So if it's not something in lru_cache, then we probably won't end up supporting it here.
I'm looking for an equivalent to a feature like this from the
cachetools
library. For instance, an app could use multiple DB connections to fetch the same data, even though those connections might not have the same image under the hash. Without the ability to exclude the DB connection from the hash key, you'd incur unnecessary cache misses.The text was updated successfully, but these errors were encountered: