我有一个像模型这样的活动资源,它与一个宁静的资源进行通信。资源路径有一些动态参数,所以我在每次请求之前在模型上设置一些类变量。
我有这样的事情:
class MyClass << MySuperClass::Base
class << self
attr_accessor :site
attr_accessor :shop_id
attr_accessor :product_id
def get
RestClient.get(self.site)
end
def set_site(shop_id, product_id)
self.site = "http://example.com/api/shop/#{shop_id}/product/#{product_id}
end
end
end
在我的应用程序控制器中,我有一个设置 shop_id 和 product_id 的前置过滤器
class ApplicationController < ActionController::Base
before_filter :set_site
private
def set_site
MyClass.set_site(current_shop.id, current_product.id)
end
end
据我从这里了解:http: //m.onkey.org/thread-safety-for-your-rails 这可能是某些竞争条件的原因。
那篇文章是 3 年前写的,所以仍然存在为每个请求设置类变量可能导致竞争条件的情况?
如果是这样,那么在不引起竞争条件的情况下实现类似行为的当前最佳实践是什么?