Hi Jonas,
There's nothing inherently slow within the cms itself.
The problem is when you have pages with dozens of plugins the rendering simply takes time.
Most of the times, the problem is within the plugin itself. For example
cmsplugin-feed uses the
feedparser library that needs around 2s to parse a medium sized rss feed.
You can obviously try to improve the performance of each plugin by optimizing parsing algorithms and so on, but that would obviously take a lot of time and it might require forking third-partly libraries.
The easiest way would be to implement caching for each plugin, but then you'd have to write very similar logic in all plugins, so I thought it would be a nice feature for django-cms to offer this feature.
Regards,
Alex