On Feb 7, 2007, at 10:26 AM, codecowboy wrote:
> > My company Lifeagora has launched... Finally!!! (applause) We are > in the process of setting up a scalable architecture which would of > course allow us to use a load balancer to divi up requests between > several apache servers. This not my cup of tea, so this may come off > as a newbie question. Will I need to change Cake's Session Component > so that is works when multiple servers are creating sessions at the > same time? Or, is this something that I will fix inside of apache? Depends what type of sessions you're using. If you using php sessions, you'll need to make sure those session files are stored in a share that is accessible to all cluster nodes. You might consider using database sessions - this allows all nodes on the cluster to use the same database they are already connected to in order to get session data as well. Congrats on the launch. :) -- John --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Cake PHP" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/cake-php?hl=en -~----------~----~----~----~------~----~------~--~---
