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
We use cache.get() in two places: publish_inner and resolve_inner, which makes every call to them a possible write transaction to the database if LMDB is used for caching.
We should consider using cache.get_read_only instead. And if we never use cache.get() then maybe we can remove it and rename the read only to be just get
The text was updated successfully, but these errors were encountered:
We use
cache.get()
in two places:publish_inner
andresolve_inner
, which makes every call to them a possible write transaction to the database if LMDB is used for caching.We should consider using
cache.get_read_only
instead. And if we never usecache.get()
then maybe we can remove it and rename the read only to be justget
The text was updated successfully, but these errors were encountered: