Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
1answer
359 views

Rails scope vs named_scope

Is there any difference between scope and named_scope?
3
votes
2answers
360 views

Why are Rails scopes preferable, if messy controllers are faster?

I've been trying to chain Arel queries using scopes, instead of just using some long-winded logic I wrote in the controller. But the scopes are slower than just getting all the records and then ...
1
vote
0answers
100 views

What's best here, Rails Association Scopes or Just SQL?

I'm not quite sure what to do here, here's the situation: Given these models... class Post < ActiveRecord::Base has_many :post_assets has_many :assets, :through => :post_assets ...