Who uses the architecture of #MVC in their projects: can you name the fatal flaws of the approach and examples of projects where such an architecture is not applicable in favor of some other?
My experience with it was short-term and, for example, I think that MVC strongly interferes with the development of a service that, in addition to directly routing data queries to the DB and rendering their results, must do some other operations or mutations to the data.
What's more, I recently discovered that MVC IS A PATTERN in architectures, not the architecture itself. Which, maybe, puts everything in its place as to why many people misunderstand it and set themselves the landmines described above. But what do you think about it?