On 6/6/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: > Hello, > > Anybody has any insight into the different type of session storage > (cake vs. php vs. database) when it comes to performance? > I would assume database is slower, but is it significant? >
Why are you worried about "session performance"? It has been my experience with sessions that the performance issue is usually the amount of stuff you are stuffing in the session, and the mechanism for how you store it is secondary. I worked on a project with 10+ application servers talking to a central session server (custom session handler) and performance was directly related to the amount of stuff we put in the session. Didn't matter what the back-end was (we did it with databases and with memcached). -- Chris Hartjes My motto for 2007: "Just build it, damnit!" @TheBallpark - http://www.littlehart.net/attheballpark @TheKeyboard - http://www.littlehart.net/atthekeyboard --~--~---------~--~----~------------~-------~--~----~ 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 -~----------~----~----~----~------~----~------~--~---
