Hello All, I am working with rails in Windows xp platform since last 2 month or so.I have made some basic and simple rails CRUD app. But whenever I tried to put some authentication on top of the apps,the app went a lot slower.Specially when accessed from remote client machines. - RUBYGEMS VERSION: 1.8.10 - RUBY VERSION: 1.8.7 (2011-06-30 patchlevel 352) [i386-mingw32] - INSTALLATION DIRECTORY: C:/Ruby187/lib/ruby/gems/1.8 - RUBY EXECUTABLE: C:/Ruby187/bin/ruby.exe - EXECUTABLE DIRECTORY: C:/Ruby187/bin - RUBYGEMS PLATFORMS: - ruby - x86-mingw32 -RAILS 3.0.10 I am using AptanaStudio3 as IDE and I have used gem ''devise 1.1.rc0'' for authentication. Can anyone tell me how can I make my RESTful apps work a li''l faster with this configuration or any other that might help? Regards, Pallav -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
On 2 February 2012 07:43, Pallav_bfs <spallav88-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> Hello All, > I am working with rails in Windows xp platform since last 2 month or > so.I have made some basic and simple rails CRUD app. > But whenever I tried to put some authentication on top of the apps,the > app went a lot slower.Specially when accessed from remote client > machines. > > - RUBYGEMS VERSION: 1.8.10 > - RUBY VERSION: 1.8.7 (2011-06-30 patchlevel 352) [i386-mingw32] > - INSTALLATION DIRECTORY: C:/Ruby187/lib/ruby/gems/1.8 > - RUBY EXECUTABLE: C:/Ruby187/bin/ruby.exe > - EXECUTABLE DIRECTORY: C:/Ruby187/bin > - RUBYGEMS PLATFORMS: > - ruby > - x86-mingw32 > -RAILS 3.0.10 > > I am using AptanaStudio3 as IDE and I have used gem ''devise 1.1.rc0'' > for authentication. > Can anyone tell me how can I make my RESTful apps work a li''l faster > with this configuration or any other that might help?Are you running in development or production mode? Development is slow as it reloads all the classes at each request. Colin -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Hello Colin, I''ve tried production mode also..But that doesn''t come with a lot of improvement. And I am using webbrick server. On Feb 2, 2:02 pm, Colin Law <clan...-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote:> On 2 February 2012 07:43, Pallav_bfs <spalla...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > > > > > > > Hello All, > > I am working with rails in Windows xp platform since last 2 month or > > so.I have made some basic and simple rails CRUD app. > > But whenever I tried to put some authentication on top of the apps,the > > app went a lot slower.Specially when accessed from remote client > > machines. > > > - RUBYGEMS VERSION: 1.8.10 > > - RUBY VERSION: 1.8.7 (2011-06-30 patchlevel 352) [i386-mingw32] > > - INSTALLATION DIRECTORY: C:/Ruby187/lib/ruby/gems/1.8 > > - RUBY EXECUTABLE: C:/Ruby187/bin/ruby.exe > > - EXECUTABLE DIRECTORY: C:/Ruby187/bin > > - RUBYGEMS PLATFORMS: > > - ruby > > - x86-mingw32 > > -RAILS 3.0.10 > > > I am using AptanaStudio3 as IDE and I have used gem ''devise 1.1.rc0'' > > for authentication. > > Can anyone tell me how can I make my RESTful apps work a li''l faster > > with this configuration or any other that might help? > > Are you running in development or production mode? Development is > slow as it reloads all the classes at each request. > > Colin- Hide quoted text - > > - Show quoted text --- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
On 2 February 2012 09:18, Pallav_bfs <spallav88-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> Hello Colin, > I''ve tried production mode also..But that doesn''t come with a lot of > improvement. > And I am using webbrick server.There is the question of what you mean by slow of course. Any Ajax call must do a round trip to the server. Start by looking in the log though to see if any clues there. I have not done it myself but there is a Rails Guide on Performance Testing which purports to provide methods of profiling your app to see where the bottlenecks are. Others who have experience of this may be able to offer suggestions. Also googling for ruby rails profile provides a number of useful looking hits (include ruby in the search or you find all about the profile of rail lines). Colin> > > On Feb 2, 2:02 pm, Colin Law <clan...-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote: >> On 2 February 2012 07:43, Pallav_bfs <spalla...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: >> >> >> >> >> >> > Hello All, >> > I am working with rails in Windows xp platform since last 2 month or >> > so.I have made some basic and simple rails CRUD app. >> > But whenever I tried to put some authentication on top of the apps,the >> > app went a lot slower.Specially when accessed from remote client >> > machines. >> >> > - RUBYGEMS VERSION: 1.8.10 >> > - RUBY VERSION: 1.8.7 (2011-06-30 patchlevel 352) [i386-mingw32] >> > - INSTALLATION DIRECTORY: C:/Ruby187/lib/ruby/gems/1.8 >> > - RUBY EXECUTABLE: C:/Ruby187/bin/ruby.exe >> > - EXECUTABLE DIRECTORY: C:/Ruby187/bin >> > - RUBYGEMS PLATFORMS: >> > - ruby >> > - x86-mingw32 >> > -RAILS 3.0.10 >> >> > I am using AptanaStudio3 as IDE and I have used gem ''devise 1.1.rc0'' >> > for authentication. >> > Can anyone tell me how can I make my RESTful apps work a li''l faster >> > with this configuration or any other that might help? >> >> Are you running in development or production mode? Development is >> slow as it reloads all the classes at each request. >> >> Colin- Hide quoted text - >> >> - Show quoted text - > > -- > You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com. > For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en. >-- gplus.to/clanlaw -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
My team also faced the slowness of app when upgraded to Rails 3.1 from Rails 2.3.8, using Ruby 1.8.7. We upgraded to Ruby version to 1.9 to overcome the slowness. The app runs better in Ruby 1.9.2 with Rails 3. - Neethu -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Thanks Colin,I am trying to resolve this. Please share if you find anything useful there. On Feb 2, 2:24 pm, Colin Law <clan...-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote:> On 2 February 2012 09:18, Pallav_bfs <spalla...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > > > Hello Colin, > > I''ve tried production mode also..But that doesn''t come with a lot of > > improvement. > > And I am using webbrick server. > > There is the question of what you mean by slow of course. Any Ajax > call must do a round trip to the server. > > Start by looking in the log though to see if any clues there. > > I have not done it myself but there is a Rails Guide on Performance > Testing which purports to provide methods of profiling your app to see > where the bottlenecks are. Others who have experience of this may be > able to offer suggestions. Also googling for ruby rails profile > provides a number of useful looking hits (include ruby in the search > or you find all about the profile of rail lines). > > Colin > > > > > > > > > On Feb 2, 2:02 pm, Colin Law <clan...-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote: > >> On 2 February 2012 07:43, Pallav_bfs <spalla...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > > >> > Hello All, > >> > I am working with rails in Windows xp platform since last 2 month or > >> > so.I have made some basic and simple rails CRUD app. > >> > But whenever I tried to put some authentication on top of the apps,the > >> > app went a lot slower.Specially when accessed from remote client > >> > machines. > > >> > - RUBYGEMS VERSION: 1.8.10 > >> > - RUBY VERSION: 1.8.7 (2011-06-30 patchlevel 352) [i386-mingw32] > >> > - INSTALLATION DIRECTORY: C:/Ruby187/lib/ruby/gems/1.8 > >> > - RUBY EXECUTABLE: C:/Ruby187/bin/ruby.exe > >> > - EXECUTABLE DIRECTORY: C:/Ruby187/bin > >> > - RUBYGEMS PLATFORMS: > >> > - ruby > >> > - x86-mingw32 > >> > -RAILS 3.0.10 > > >> > I am using AptanaStudio3 as IDE and I have used gem ''devise 1.1.rc0'' > >> > for authentication. > >> > Can anyone tell me how can I make my RESTful apps work a li''l faster > >> > with this configuration or any other that might help? > > >> Are you running in development or production mode? Development is > >> slow as it reloads all the classes at each request. > > >> Colin- Hide quoted text - > > >> - Show quoted text - > > > -- > > You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. > > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > > To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > > For more options, visit this group athttp://groups.google.com/group/rubyonrails-talk?hl=en. > > -- > gplus.to/clanlaw- Hide quoted text - > > - Show quoted text --- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Thanks Neethu,we will surely try that also. On Feb 2, 2:32 pm, Neethu Satheesh <li...-fsXkhYbjdPsEEoCn2XhGlw@public.gmane.org> wrote:> My team also faced the slowness of app when upgraded to Rails 3.1 from > Rails 2.3.8, using Ruby 1.8.7. > > We upgraded to Ruby version to 1.9 to overcome the slowness. > The app runs better in Ruby 1.9.2 with Rails 3. > > - Neethu > > -- > Posted viahttp://www.ruby-forum.com/.-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
On 2 February 2012 09:55, Pallav_bfs <spallav88-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> Thanks Colin,I am trying to resolve this. > Please share if you find anything useful there.I was not suggesting that *I* do the research, just pointing out that where you might start yourself. Colin> > On Feb 2, 2:24 pm, Colin Law <clan...-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote: >> On 2 February 2012 09:18, Pallav_bfs <spalla...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: >> >> > Hello Colin, >> > I''ve tried production mode also..But that doesn''t come with a lot of >> > improvement. >> > And I am using webbrick server. >> >> There is the question of what you mean by slow of course. Any Ajax >> call must do a round trip to the server. >> >> Start by looking in the log though to see if any clues there. >> >> I have not done it myself but there is a Rails Guide on Performance >> Testing which purports to provide methods of profiling your app to see >> where the bottlenecks are. Others who have experience of this may be >> able to offer suggestions. Also googling for ruby rails profile >> provides a number of useful looking hits (include ruby in the search >> or you find all about the profile of rail lines). >> >> Colin >> >> >> >> >> >> >> >> > On Feb 2, 2:02 pm, Colin Law <clan...-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote: >> >> On 2 February 2012 07:43, Pallav_bfs <spalla...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: >> >> >> > Hello All, >> >> > I am working with rails in Windows xp platform since last 2 month or >> >> > so.I have made some basic and simple rails CRUD app. >> >> > But whenever I tried to put some authentication on top of the apps,the >> >> > app went a lot slower.Specially when accessed from remote client >> >> > machines. >> >> >> > - RUBYGEMS VERSION: 1.8.10 >> >> > - RUBY VERSION: 1.8.7 (2011-06-30 patchlevel 352) [i386-mingw32] >> >> > - INSTALLATION DIRECTORY: C:/Ruby187/lib/ruby/gems/1.8 >> >> > - RUBY EXECUTABLE: C:/Ruby187/bin/ruby.exe >> >> > - EXECUTABLE DIRECTORY: C:/Ruby187/bin >> >> > - RUBYGEMS PLATFORMS: >> >> > - ruby >> >> > - x86-mingw32 >> >> > -RAILS 3.0.10 >> >> >> > I am using AptanaStudio3 as IDE and I have used gem ''devise 1.1.rc0'' >> >> > for authentication. >> >> > Can anyone tell me how can I make my RESTful apps work a li''l faster >> >> > with this configuration or any other that might help? >> >> >> Are you running in development or production mode? Development is >> >> slow as it reloads all the classes at each request. >> >> >> Colin- Hide quoted text - >> >> >> - Show quoted text - >> >> > -- >> > You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. >> > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFFw@public.gmane.org. >> > To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org >> > For more options, visit this group athttp://groups.google.com/group/rubyonrails-talk?hl=en. >> >> -- >> gplus.to/clanlaw- Hide quoted text - >> >> - Show quoted text - > > -- > You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com. > For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en. >-- gplus.to/clanlaw -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
I didn''t assume that you would do the research for me! Thanks for guiding the direction. I only asked for sharing any clue in case you find something ... Thanks again -Pallav On Feb 2, 3:04 pm, Colin Law <clan...-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote:> On 2 February 2012 09:55, Pallav_bfs <spalla...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > > > Thanks Colin,I am trying to resolve this. > > Please share if you find anything useful there. > > I was not suggesting that *I* do the research, just pointing out that > where you might start yourself. > > Colin > > > > > > > > > On Feb 2, 2:24 pm, Colin Law <clan...-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote: > >> On 2 February 2012 09:18, Pallav_bfs <spalla...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > > >> > Hello Colin, > >> > I''ve tried production mode also..But that doesn''t come with a lot of > >> > improvement. > >> > And I am using webbrick server. > > >> There is the question of what you mean by slow of course. Any Ajax > >> call must do a round trip to the server. > > >> Start by looking in the log though to see if any clues there. > > >> I have not done it myself but there is a Rails Guide on Performance > >> Testing which purports to provide methods of profiling your app to see > >> where the bottlenecks are. Others who have experience of this may be > >> able to offer suggestions. Also googling for ruby rails profile > >> provides a number of useful looking hits (include ruby in the search > >> or you find all about the profile of rail lines). > > >> Colin > > >> > On Feb 2, 2:02 pm, Colin Law <clan...-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org> wrote: > >> >> On 2 February 2012 07:43, Pallav_bfs <spalla...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote: > > >> >> > Hello All, > >> >> > I am working with rails in Windows xp platform since last 2 month or > >> >> > so.I have made some basic and simple rails CRUD app. > >> >> > But whenever I tried to put some authentication on top of the apps,the > >> >> > app went a lot slower.Specially when accessed from remote client > >> >> > machines. > > >> >> > - RUBYGEMS VERSION: 1.8.10 > >> >> > - RUBY VERSION: 1.8.7 (2011-06-30 patchlevel 352) [i386-mingw32] > >> >> > - INSTALLATION DIRECTORY: C:/Ruby187/lib/ruby/gems/1.8 > >> >> > - RUBY EXECUTABLE: C:/Ruby187/bin/ruby.exe > >> >> > - EXECUTABLE DIRECTORY: C:/Ruby187/bin > >> >> > - RUBYGEMS PLATFORMS: > >> >> > - ruby > >> >> > - x86-mingw32 > >> >> > -RAILS 3.0.10 > > >> >> > I am using AptanaStudio3 as IDE and I have used gem ''devise 1.1.rc0'' > >> >> > for authentication. > >> >> > Can anyone tell me how can I make my RESTful apps work a li''l faster > >> >> > with this configuration or any other that might help? > > >> >> Are you running in development or production mode? Development is > >> >> slow as it reloads all the classes at each request. > > >> >> Colin- Hide quoted text - > > >> >> - Show quoted text - > > >> > -- > >> > You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. > >> > To post to this group, send email to rubyonrails-talk@googlegroups.com. > >> > To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > >> > For more options, visit this group athttp://groups.google.com/group/rubyonrails-talk?hl=en. > > >> -- > >> gplus.to/clanlaw- Hide quoted text - > > >> - Show quoted text - > > > -- > > You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. > > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > > To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > > For more options, visit this group athttp://groups.google.com/group/rubyonrails-talk?hl=en. > > -- > gplus.to/clanlaw- Hide quoted text - > > - Show quoted text --- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
On Feb 2, 3:32 am, Neethu Satheesh <li...-fsXkhYbjdPsEEoCn2XhGlw@public.gmane.org> wrote:> My team also faced the slowness of app when upgraded to Rails 3.1 from > Rails 2.3.8, using Ruby 1.8.7. > > We upgraded to Ruby version to 1.9 to overcome the slowness. > The app runs better in Ruby 1.9.2 with Rails 3. > > - NeethuI agree with Neethu. Upgrade your Ruby version before you try anything else. Thanks, B. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
why are you running WEBrick as your production webserver? it''s not designed for that. get an apache or Nginx install post haste! jordan On Feb 2, 2012, at 11:14 AM, bacrossland wrote:> On Feb 2, 3:32 am, Neethu Satheesh <li...-fsXkhYbjdPsEEoCn2XhGlw@public.gmane.org> wrote: >> My team also faced the slowness of app when upgraded to Rails 3.1 from >> Rails 2.3.8, using Ruby 1.8.7. >> >> We upgraded to Ruby version to 1.9 to overcome the slowness. >> The app runs better in Ruby 1.9.2 with Rails 3. >> >> - Neethu > > > I agree with Neethu. Upgrade your Ruby version before you try anything > else. > > Thanks, > B. > > -- > You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en. >-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
I agree would get Nginx running passenger. You also I believe did not mention the amount of memory you have on your server etc. On Feb 2, 10:15 am, Jordan Miller <jrdn...-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org> wrote:> why are you running WEBrick as your production webserver? it''s not designed for that. > > get an apache or Nginx install post haste! > > jordan > > On Feb 2, 2012, at 11:14 AM, bacrossland wrote: > > > > > > > > > On Feb 2, 3:32 am, Neethu Satheesh <li...-fsXkhYbjdPsEEoCn2XhGlw@public.gmane.org> wrote: > >> My team also faced the slowness of app when upgraded to Rails 3.1 from > >> Rails 2.3.8, using Ruby 1.8.7. > > >> We upgraded to Ruby version to 1.9 to overcome the slowness. > >> The app runs better in Ruby 1.9.2 with Rails 3. > > >> - Neethu > > > I agree with Neethu. Upgrade your Ruby version before you try anything > > else. > > > Thanks, > > B. > > > -- > > You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. > > To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > > To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org > > For more options, visit this group athttp://groups.google.com/group/rubyonrails-talk?hl=en.-- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe@googlegroups.com. For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.