从票
#2506
在铁路灯塔遗址。下面我将threadsafe方法链接到rails中。你会看到的
config.dependency_loading
设置为false,因为它不是线程安全的,因此迁移将自动加载其依赖项。
# Enable threaded mode. Allows concurrent requests to controller actions and
# multiple database connections. Also disables automatic dependency loading
# after boot, and disables reloading code on every request, as these are
# fundamentally incompatible with thread safety.
def threadsafe!
self.preload_frameworks = true
self.cache_classes = true
self.dependency_loading = false
self.action_controller.allow_concurrency = true
self
end
以下是Joshua Peek在对罚单的评论中对问题的回应:
我建议你要模特
在迁移中需要的,或者
更好地包括模型定义
同样,这样迁移就不依赖于
关于它的存在。