If you want to understand why your database queries maybe aren’t as fast as they used to be, nothing beats a little feature of postgres called explain . It’s a simple idea. Just ask postgres to explain how it plans to perform a query and it’ll tell you. You can even have it execute the query it and compare expected performance to actual. Sound familiar? You may have seen explain before. Ever sinc