Good question, I wonder what other more knowledgeable persons have to say to that.
Just from the top of my mind, I don't think you can actually divide a symfony project across multiple servers. However I can see two other ways to use your three servers and share the load: 1. You can setup some load-balancing so that the requests get distributed across your three servers. This one comes with a certain degree of redundancy and is tricky to setup because all databases have to stay synced. 2. You can put your DB on one server, the actual Symfony project on another and the public webserver on the third. Symfony will store cached files and assets on the third server which also receives the requests from the internet. If it can't fulfill a request because there is no cached output yet the request will be passed on to Symfony. I can't give you any further details on how that actually works but I'm sure it's possible. However, the overhead is probably rather large and I have no idea how well it scales. Cheers, Georg Yusdenis Sanchez Perodin schrieb: > > Hello everybody: > > I need to separete my symfony project in three phisical layers because we > have three server for the aplications host. One server for the presentations > layer, other for logical layer and the other for the model layer. > > Can we separete a symfony project in three phisical layers?? > [EMAIL PROTECTED],Yusdenis Sánchez Perodín > > > > --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "symfony users" 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/symfony-users?hl=en -~----------~----~----~----~------~----~------~--~---
