We have moved our forum to GitHub Discussions. For questions about Phalcon v3/v4/v5 you can visit here and for Phalcon v6 here.

Differences Between Micro and Full Phalcon Application

What is the main differences between "micro" and "full" phalcon application ? What features missing in "micro" app ? Some sort of comparrison info would be nice.



98.9k
Accepted
answer
edited Jan '15

A "micro" app dispatches directly to a registered handler which can be a controller, function, static method, anonymous function, etc. A "full" application requires controllers with methods as actions and it has a dispatcher that allows forward the execution without having to use a redirect.



16.6k

Besides that is there any functions that are missing if using just micro app ?



16.6k

Thank you for all the info.