From ce9d9fda77e6b8ca0ac64e528af1892a5d508636 Mon Sep 17 00:00:00 2001 From: Yehuda Katz + Carl Lerche Date: Tue, 23 Jun 2009 13:47:16 -0700 Subject: Resurrect threadsafe! --- railties/lib/initializer.rb | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/railties/lib/initializer.rb b/railties/lib/initializer.rb index 9fe341fd3c..a4e3747ca4 100644 --- a/railties/lib/initializer.rb +++ b/railties/lib/initializer.rb @@ -170,6 +170,18 @@ module Rails RAILS_ROOT.replace self.root_path end + # 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 + def framework_paths paths = %w(railties railties/lib activesupport/lib) paths << 'actionpack/lib' if frameworks.include?(:action_controller) || frameworks.include?(:action_view) -- cgit v1.2.3