Hi all, I just try to play a little with Phalcon in order to get familiar with it. I read the documentation about views and models and found out that all models are available in all views. I'm just wondering if this is a downsize for example when we look at speed and performance. When I have an application with 50 or more models I almost never will need all 50 of them in one view. But they will be always loaded and be available there. Isn't this a little to much of overhead?
The benefit I see in this is that I will never need to do things like:
PostController->IndexAction()....load posts->pass to view
What are your thoughs on this? Did I miss something? Is a model maybe just lazy loaded during my first usage of it?
Thanks