I have a questions regarding the HMVC model by Kohana. I really like the idea of separating stuff as components within the same principles (MVC) for scaling and easier api creation.
Though there are some drawbacks I’m experiencing like loss of knowledge.
For example, I could have components called news and categories. On top of that are the site controllers that just delegate the full request and gathers all html/data for the site templates through these components.
Site controller
/ \
/ \
categories news
When I want all categories for a sidebar, I could call: /categories/list. When I want a news item I could call /news/ID. Both return html.
If I have a newsreadon site controller which main task is to show a news article, this controller will get all categories for the sidebar. Next it will fetch the news item.
Newsreadon
/ \
/ \
categories/list (html) news/<id> (html)
When I display all elements within the site template I want to know the 'title' of the news for the html title tag, but I can't know because I return html.
I feel like there are multiple solutions:
- Store title in some registry (but this is lost if I scale the component to a other server and use HTTP). So in view of scaling, no good choice.
- Return json with 'title' and 'html' fields.
- Read out some part of the html like h2 for the title
Solution 2 seems to be the least nasty and keeps the stateless communication in tact.
I'm really wondering how you would solve this in a elegant way? Am I missing 'the' solution?
EDIT: Interesting read to understand HMVC by kohana: http://techportal.ibuildings.com/2010/02/22/scaling-web-applications-with-hmvc/