I'm already into PHP and now I'm going to learn a new framework, because I am going to build a web platform that will be used by millions. So this obviously means I will need to scale it at some point of time and so with SO many options around me I'm just plain confused :| I read some articles on the web and I've come to a conclusion that Cake PHP and Symfony are good frameworks and are used by huge corporations. However, I am a little sceptical about the scaling part of these frameworks since I will be using AWS instances to host my project and it should be quite easy to scale. Thank You.

link|improve this question

1  
Your framework choice doesn't have much to do with scalability. You forgot to mention Zend Framework and Kohana. There is a lot of information about PHP frameworks on SO already. – markus-tharkun Apr 1 '11 at 20:11
5  
good luck for the "millions unique" part – yes123 Apr 1 '11 at 20:13
1  
Agreed with "yes123". I've developed many apps for people that were supposed to be used by millions ;) – simshaun Apr 1 '11 at 20:16
@yes123 - It is a current project for a client he needs me to rebuild his app from scratch, using a framework preferrably. He already has like say, 1-2 million views a month. – imaginonic Apr 2 '11 at 6:20
Thank you everyone for your input. Much Appreciated. – imaginonic Apr 2 '11 at 6:22
feedback

closed as not constructive by Daniel A. White, mario, Charles, markus-tharkun, ceejayoz Apr 2 '11 at 1:48

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

4 Answers

up vote 1 down vote accepted

In my opinion, scalability doesn't only depend on a developer. Well written framework gives you many options and ways to do things - that's what scalability is about. You can make it handle your personal webpage and big web application.

I would recommend Yii. I fall in love with this framework. It's really scalable, but you sometimes have to handle some things by yourself (which is good price for scalability and is a good insight on how it really works).

link|improve this answer
Thank You very much, Yii looks very promising. Gonna give it a shot. Ty. – imaginonic Apr 2 '11 at 8:34
feedback

Scaling is mostly going to be handled by you, the developer, not the framework.

link|improve this answer
feedback

In my opinion all frameworks are pretty much the same when it comes to scaling.

Best is to google around and try to find if somebody has already done the heavy duty work to make one of those scale properly.

Even wordpress would scale the very same way of a frameworks. You problem is not to scale a framework but to scale LAMP. (database replication, caching, CDN etc)

link|improve this answer
feedback

Scaling also depends on how your infrastructure is built out. Your code is part of it but if you don't have the capacity to run the code on decent hardware, your code will fail you.

link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.