From: Florian Weber Date: 2004-08-20T05:19:28+09:00 Subject: Re: [RAILS] way too slow... >> It sounds like you would rather use something that has impressive >> looking benchmark numbers than something that will reduce your >> develpment time. I would suggest php (www.php.net). There are plenty >> of PHP frameworks available, although none will be as fun to use as >> rails. > > Yes, I realize what you are saying, and rails devel *is* fun. Except > for the agonizing long time it takes for a page to reload to show me > what I've changed. That seems to mitigate against the supposed > increase in devel time. It's actually taking me longer to devel in > rails right now. (I'm still learning ruby, too) like david already said, that requests can take up to one second using cgi is totally normal. ruby has to parse tons of classes for every execution with that. i have to admit that i was also surprised by that at first. especially when you compare it to php. but then again most of the php libs are c.. anyways. i really never even thought that rails is slowing me down in my development. i mean, i use unit tests for most of the stuff and just every now and then i have to test the ui and controller via http requests. works great!