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
Right now, in a multi-database, if a user has an iterable of ghost objects, it's up to them to split it up by database so that it gets to the right connection to prefetch:
If they don't do that, the results are anything between "only some data got prefetched" to "it was a bunch of pointless work, because this connection had none of them" to "this connection prefetched them, but they're not from this database, so it pushed a bunch of useful data out of the cache."
It seems like this could be better handled by the prefetch method itself.
The text was updated successfully, but these errors were encountered:
Right now, in a multi-database, if a user has an iterable of ghost objects, it's up to them to split it up by database so that it gets to the right connection to prefetch:
If they don't do that, the results are anything between "only some data got prefetched" to "it was a bunch of pointless work, because this connection had none of them" to "this connection prefetched them, but they're not from this database, so it pushed a bunch of useful data out of the cache."
It seems like this could be better handled by the
prefetch
method itself.The text was updated successfully, but these errors were encountered: