There are a couple things you can do. By default, Active Admin loads associations as drop-down filters on the index page. If those filters aren't being used, it helps to remove them because they instantiate every record of that model to build the drop-down. ActiveAdmin.register Post do remove_filter :categories end If your index page has columns that depend on associated records, it helps to eager
