Content Management Architecture
I have some experience on Content Management development.
But I am still learning and I wonder what is the best approach to provide the content right to the user.
1 - Managing the content from the backend record the data and produce a 'static' frontend webside.
Pros: you save a lot of bandwidth becuse you don't have to read dynamically the content.
Cons: No really dynamic and you break a link between the last content and the new one.
2 - Same than 1, but having a dynamic front end to read the content from the database.
Pros: Dynamic, easy to manage, and you separate the content from the presentation.
Cons: Can be slower when the number of users increase.
OK that's the basics, but if you have some ideas on this subject, I like to read more.