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
As described by @davidpede in #152, when an object is loaded with lazy-loaded fields, additional queries are fired automatically to load the lazy fields if the db_cache is enabled. This implies that the signature for storing cached entries is insufficient to cache objects loaded this way. Two possible solutions come to mind. We would either need to include the selected (or unselected) columns in the cache signature, or we need to prevent caching of objects that have fields that were not selected.
The text was updated successfully, but these errors were encountered:
As described by @davidpede in #152, when an object is loaded with lazy-loaded fields, additional queries are fired automatically to load the lazy fields if the db_cache is enabled. This implies that the signature for storing cached entries is insufficient to cache objects loaded this way. Two possible solutions come to mind. We would either need to include the selected (or unselected) columns in the cache signature, or we need to prevent caching of objects that have fields that were not selected.
The text was updated successfully, but these errors were encountered: