Session state w/ >1 processes

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

[email protected] 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