When routing requests to more than one fcgi process, what are my options with Rails? Are most people in the community just using some form of session affinity? Dennis Byrne -------------- next part -------------- An HTML attachment was scrubbed... URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060711/2a366faa/attachment.html
Dennis_Byrne@ak.blm.gov wrote:> When routing requests to more than one fcgi process, what are my options > with Rails? Are most people in the community just using some form of > session affinity?By default Rails uses files to hold session state, so no session affinity is needed. It''s generally preferable to use the option to hold session state in the database, which again avoids having to have session affinity. regards Justin