aboutsummaryrefslogtreecommitdiffstats
path: root/railties/CHANGELOG
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2006-07-06 17:35:37 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2006-07-06 17:35:37 +0000
commit6a66f910a1dddfe8c7405fac586aba20346b38fe (patch)
treece4312dbf46f98ef4c1157943b9c281e84db642d /railties/CHANGELOG
parent40d8d77c6454a9f5ff1a9bc941d039c62deb7a79 (diff)
downloadrails-6a66f910a1dddfe8c7405fac586aba20346b38fe.tar.gz
rails-6a66f910a1dddfe8c7405fac586aba20346b38fe.tar.bz2
rails-6a66f910a1dddfe8c7405fac586aba20346b38fe.zip
Updated
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@4572 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'railties/CHANGELOG')
-rw-r--r--railties/CHANGELOG10
1 files changed, 10 insertions, 0 deletions
diff --git a/railties/CHANGELOG b/railties/CHANGELOG
index b9086e91c9..34cff52746 100644
--- a/railties/CHANGELOG
+++ b/railties/CHANGELOG
@@ -1,5 +1,15 @@
*SVN*
+* Added Mongrel-spawning capabilities to script/process/spawner. Mongrel will be the default choice if installed, otherwise FCGI is tried [DHH]. Examples:
+
+ spawner # starts instances on 8000, 8001, and 8002 using Mongrel if available
+ spawner fcgi # starts instances on 8000, 8001, and 8002 using FCGI
+ spawner mongrel -i 5 # starts instances on 8000, 8001, 8002, 8003, and 8004 using Mongrel
+ spawner -p 9100 -i 10 # starts 10 instances counting from 9100 to 9109 using Mongrel if available
+ spawner -p 9100 -r 5 # starts 3 instances counting from 9100 to 9102 and attempts start them every 5 seconds
+
+ Also note that script/process/reaper is Mongrel capable. So the combination of spawner and reaper is a built-in alternative to something like mongrel_cluster.
+
* Update scaffolding functional tests to use :id => people(:first) instead of :id => 1. #5612 [evan@protest.net]
* db:test:clone should remove existing tables before reloading the schema. #5607 [sveit@tradeharbor.com]