Reputation: 777
suppose I implemented my site using Zend Framework and then after some time scalability issue start to arise so we decide to implement some load balancing to solve it...
will the fact that I used zend framework would prevent me to implement load balancing in any way?
Upvotes: 2
Views: 1099
Reputation: 55032
definitely not.
You can load balance zend framework applications easily.
you should be aware of session. if you are using session, load balancer should support sticky session.
Upvotes: 4