I normally place my caching above expensive methods (like getting data from external services or tough calculations). Caching normal blocks and pages in Episerver is normally not worth the trouble if you are not getting 1000s of pages in some kind listing / filtering operation. Episerver already does that for you in the background. If you get a page / block from repository or list children etc it will be cached 99.9% of the time. So you get very little actual benefit for a lot of nasty caching code and cache invalidation, like you are thinking about, can be tricky to get correct. So my suggestion is to only cache calls that you know will be problematic.
Then you can also use the standard caching of html in Episerver that you can turn on in web.config.
Hi all,
We are planning a caching strategy for our project.
Caching whole pages is not an options for us.
We are thinking of caching blocks.
Currently, we are trying to use
with ToString on block overriden like this:
and in Global.asax:
However, this solution doesn't support the following cases:
For 1. I have an idea of getting parent blocks and republish them on inner block publish like this:
For 3. I found the solution in the Internet which basically is an extenstion of custom string:
My wish is to not do more harm than good. My solution for 1. may take a long time on publish if inner block has a lot of parents and I have to also take into account whether the parent block has scheduled publishing or not. And what about block inside a block inside a block? My solution doesn't support that.
My solution for 3. may clutter the memory with multiple versions for each block.
Do you know better output cache strategy?
Thank you in advance for your help.