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.
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.