为什么在活动记录范围中使用lambdas

时间:2012-07-08 17:17:08

标签: ruby ruby-on-rails-3

我正在阅读Beginning Rails 3.本书创建了一个用户可以发布文章的项目。现在在Article对象中,他们创建了3个范围,如:

scope :published, where("articles.published_at IS NOT NULL")
scope :draft, where("articles.published_at IS NULL")
scope :recent, lambda { published.where("articles.published_at > ?", 1.week.ago.to_date)}

现在最后一个lambda函数我可以用这个scope语句替换它,我得到相同的结果:

scope :recent, where("published_at > ?", 1.week.ago.to_date)

在这里使用lambda有什么好处?

1 个答案:

答案 0 :(得分:10)

如果您不使用lambda,则会在应用程序启动时计算时间1.week.ago并缓存。因此,即使您的应用程序已运行数月,它仍将指向应用程序启动前一周的时间。

您在开发环境中没有注意到这一点,因为应用程序代码会在每个请求上重新加载。使用lambda,即使在生产环境中,也要确保每次调用范围时都是新计算的。