I'm running a lot of ActiveRecord queries in my Rails app that have quite a few named and dynamic scopes. I was wondering if there is any difference performance-wise in how those scopes are order.
For example, could Person.american.adult.find(:all)
be an slower than Person.adult.american.find(:all)
?