If I used Code Igniter or the Cake Framework, will it affect the performance of my application?
feedback
|
closed as not a real question by Matti Virkkunen, George Stocker, ircmaxell, Mark Trapp, Gordon Aug 28 '10 at 14:04
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. See the FAQ for guidance on how to improve it.
|
Look here, PHP framework comparison benchmarks. But, if you need very fast performance, I would advise Yii because of its awesome performance.: | |||||||||||||||||
feedback
|
|
If you define performance as speed of execution, then the answer is
Frameworks offer abstractions over PHP's native functions. Whenever you put an abstraction onto something, you incur the penalty of loading the abstraction and invoking it's functions. Frameworks are usually general abstractions, that cater to a lot of UseCases. Solving a specific UseCase in your application can likely be solved with less abstraction. But with frameworks you gain better modularization, faster development times (if you know the framework), better maintainability and (hopefully) tested code, which is usually worth it. That's not to say, always use a framework, but always consider the tradeoff - then decide. As for benchmarks, well, have a look at | |||||||||||||
feedback
|
|
Take a look at these two answers: One on benefits and disadvantages of frameworks One on benchmark comparisons of frameworks, and how they are all but meaningless | |||
|
feedback
|
|
Possible disadvantages: (Sometime depends on your project)
If you want to compare different frameworks. | |||||||||||||||||
feedback
|