on heroku, my active admin Report model page loads very slowly and usually just times out. I found the culprit:
Interaction Load (114.0ms) SELECT "interactions".* FROM "interactions"
FbUser Load (66.5ms) SELECT "fb_users".* FROM "fb_users"
How do I make this page load faster with active admin?
Likely, the solution is very simple:
ActiveAdmin.register YourModel do
remove_filter :interactions
remove_filter :fb_user
end
For more performance tips, see: How can I optimize active_admin
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With