More efficient loading of content area items
As a developer with aims for high performance, I would like the IContentAreaLoader interface to have a batch load method, to load all content area items at once, whether from inline content, cache or database. All while keeping the internal order of the items.
If I want to load all content area items at once, using IContentLoader.GetItems, then the order of the items is not guaranteed to be kept. So I am left with enumerating the list of items, and then calling IContentAreaLoader.LoadContent for each item.
If this is done, then I would like you to also use in in ContentAreaRenderer. So that all content area items are preloaded once in RenderContentAreaItems and passed one by one to RenderContentAreaItem.
