November Happy Hour will be moved to Thursday December 5th.
November Happy Hour will be moved to Thursday December 5th.
Hi,
By "container" do you mean a content area on the page, that contains a block/page/whatever - that loads slowly?
If you are looking to make it async on the server (using parallel execution, async in C# or whatever other technology) - overall request lenght may still be as long as slowest block.
If you are looking for a way to improve end-user experience and load page faster and then load content later - then you really need to take a look at delivering content via other channels - like Ajax calls back to your service (most probably WebApi controller) that will deliver markup back to the page.
This is not built-in into the platform, but guess - not so hard to build one. You may find inspiration in Allan's amazing work on CMS Service API (https://github.com/AThraen/ServiceAPIExtensions) as extension of existing set of Service APIs mostly for Commerce.
Hi, new to epi server here.
We have complex logic in one of the containers in our homepage, it's causing the page to render slowly as the entire page is waiting for this container to process.
Is there a way to mark this container as async so it can be called to populate once the homepage has rendered the rest of the page? It would need a client side change to initiate the call once the page is rendered and also a async/ajax method to return the calculated container after processing.
Hoping theres something we can do here.