I was searching for a local cache solution to store output cache in user browser so that each user has his own cache, and i arrived to use he following profile:
<add name="Cache30MinClient" duration="1800" varyByParam="none" location="Client" noStore="true" />
However i found the following post which state that user cache is done by varyByCustom attibute .
My question is: Is my solution enough for caching data in user browser or should i follow that post?
Thanks.