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
When using multiple databases I'll see lots of warnings to use eager loading, but that's not actually possible across multiple databases, right?
Made up scenario:
Local Database
Vendor Database
Sale :product_id
Product :id
So say I'm listing Sales and pulling data from the vendor's server, there's no way to avoid N+1 short of caching everything locally which isn't always practical.
Could we detect in Bullet if the N+1 is going across distinct servers and either suppress the message or maybe show a different message explaining the situation? Maybe there's an optimization I'm not thinking of we could suggest?
The text was updated successfully, but these errors were encountered:
When using multiple databases I'll see lots of warnings to use eager loading, but that's not actually possible across multiple databases, right?
Made up scenario:
So say I'm listing Sales and pulling data from the vendor's server, there's no way to avoid N+1 short of caching everything locally which isn't always practical.
Could we detect in Bullet if the N+1 is going across distinct servers and either suppress the message or maybe show a different message explaining the situation? Maybe there's an optimization I'm not thinking of we could suggest?
The text was updated successfully, but these errors were encountered: