Displaying 4 results from an estimated 4 matches for "railsspawnmethod".
2009 Apr 30
10
tweaking Passenger/Rack for performance.
...ervative than the suggested settings on the Passenger
docs as your app takes up a lot more memory than your average site.
* PassengerStatThrottleRate 600
I haven''t noticed this make a *huge* difference, but logically we
don''t need to stat for the relevant files at all really.
* RailsSpawnMethod
has made no difference to me, but I''m not using storeconfigs.
* PassengerUseGlobalQueue
This feels like it should make a difference under heavy load.... but
doesn''t appear to.
* PassengerHighPerformance
Turning this on appears to reduce performance for me.
* PassengerMaxRequest...
2010 Mar 09
0
acts as list and passenger
Hello,
i have problem with acts_as_list plugin. Everything works fine on
development server, but it doesn`t work on production (passenger) .
I set RailsSpawnMethod to conservative but it doesn`t help
Thanks for your help
--
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/Ez6...
2008 Sep 07
8
How do I make an API?
Hi!
I''m a new developer trying to get into Ruby on Rails. My team is
developing an iPhone application that wants to call our Ruby on Rails
web-end to store and retrieve data. I''ve looked on the web and in this
forum but the only things I could find were dealing with scaffolding,
which a) didn''t solve the problem clearly for me and b) we''re not
using
2012 May 27
2
Setting Up A Rails App With Passenger
...r apache2.conf:
=======================================================
# Setup a virtual host for the rails apps to run in.
<VirtualHost *:80>
# ServerName www.myhost.com
ServerName eaa.mysite.com
DocumentRoot /var/rails-apps/eaa/public
#PassengerSpawnMethod conservative
RailsSpawnMethod smart
#RailsEnv production
RailsEnv development
#<Directory /var/rails-apps>
# Relax Apache security settings.
#AllowOverride all
# MultiViews must be turned off.
#Options -MultiViews
#</Directory>
=========================================...