user734027
user734027

Reputation: 777

zend framework with load balancing

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

Answers (1)

DarthVader
DarthVader

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

Related Questions